> * compiler.py still had a map(None) call, that I replaced with
izip_longest.

>
> The biggest change was just adding izip_longest to utils.py3 and
> utils.itercompat.


I had the same issue with MySQL -- I used a block like this:

try:
   from itertools import zip_longest
except ImportError:
   # python 2.x
   from itertools import izip_longest as zip_longest

The code doesn't really seem to mind; iterator or generator, so I didn't
think it was worth making an exact compatibility function


> Ian
>
> --
> You received this message because you are subscribed to the Google Groups
"Django developers" group.
> To post to this group, send email to django-developers@googlegroups.com.
> To unsubscribe from this group, send email to
django-developers+unsubscr...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/django-developers?hl=en.
>
>

-- 
Regards,
Ian Clelland
<clell...@gmail.com>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to