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 ned.deily
Recipients Ernesto Alfonso, ned.deily
Date 2015-06-14.00:43:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1434242620.17.0.0619439676842.issue24446@psf.upfronthosting.co.za>
In-reply-to
Content
This is a documented behavior difference in itertools.imap:

"If function is set to None, then imap() returns the arguments as a tuple. Like map() but stops when the shortest iterable is exhausted instead of filling in None for shorter iterables. The reason for the difference is that infinite iterator arguments are typically an error for map() (because the output is fully evaluated) but represent a common and useful way of supplying arguments to imap()." 

https://docs.python.org/2/library/itertools.html#itertools.imap
History
Date User Action Args
2015-06-14 00:43:40ned.deilysetrecipients: + ned.deily, Ernesto Alfonso
2015-06-14 00:43:40ned.deilysetmessageid: <1434242620.17.0.0619439676842.issue24446@psf.upfronthosting.co.za>
2015-06-14 00:43:39ned.deilylinkissue24446 messages
2015-06-14 00:43:38ned.deilycreate