This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients ronaldoussoren
Date 2010-07-13.12:27:38
SpamBayes Score 0.015433017
Marked as misclassified No
Message-id <1279024060.01.0.479888389372.issue9245@psf.upfronthosting.co.za>
In-reply-to
Content
A related issue:

   from itertools import chain, izip, imap

This results in an invalid transformation:


-from itertools import chain, izip, imap
+from itertools import chain,


The translated version is an invalid import statement with a ',' at the end of the line.

A workaround for the first issue: use explicit imports. A workaround for this one: use "from itertools import izip, imap, chain".
History
Date User Action Args
2010-07-13 12:27:40ronaldoussorensetrecipients: + ronaldoussoren
2010-07-13 12:27:40ronaldoussorensetmessageid: <1279024060.01.0.479888389372.issue9245@psf.upfronthosting.co.za>
2010-07-13 12:27:38ronaldoussorenlinkissue9245 messages
2010-07-13 12:27:38ronaldoussorencreate