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 kjohnson
Recipients akuchling, georg.brandl, kjohnson
Date 2008-09-04.17:26:53
SpamBayes Score 4.330593e-05
Marked as misclassified No
Message-id <1c2a2c590809041026r72be62e5s27f9f34cea8af5e4@mail.gmail.com>
In-reply-to <1c2a2c590809040917k393a57a5n91bdb04aebe38df@mail.gmail.com>
Content
For the itertools examples, perhaps you could remove the [ ] from the
result text so it doesn't look like a list. For example:
itertools.izip_longest([1,2,3], [1,2,3,4,5]) ->
 (1, 1), (2, 2), (3, 3), (None, 4), (None, 5)
History
Date User Action Args
2008-09-04 17:26:54kjohnsonsetrecipients: + kjohnson, akuchling, georg.brandl
2008-09-04 17:26:53kjohnsonlinkissue3671 messages
2008-09-04 17:26:53kjohnsoncreate