On Sat, May 26, 2012 at 4:31 AM, Vinay Sajip <[email protected]> wrote: > Anssi, > > Thanks very much for the feedback. > >> Both Oracle and MySQL fail to run because of this error (on both 2.7 >> and 3.2): >> File "/home/akaariai/Programming/django/tests/django/db/backends/ >> mysql/compiler.py", line 2, in <module> >> from django.utils.itercompat import izip_longest >> ImportError: cannot import name izip_longest > > I will investigate this.
The izip_longest definition was removed from itercompat in revision b60b45a2a565 (which is fine, since it was only there for Python 2.5 compatibility), but it means that the places that imported it need to be changed to import it directly from py3 instead. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
