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 terry.reedy
Recipients belopolsky, docs@python, ezio.melotti, georg.brandl, lvogt, rhettinger, terry.reedy
Date 2010-07-25.23:38:57
SpamBayes Score 0.07495907
Marked as misclassified No
Message-id <1280101139.95.0.627031006222.issue7447@psf.upfronthosting.co.za>
In-reply-to
Content
patch3 incorporates all your suggestions.

I verified the itertools hint:
>>> list(itertools.chain.from_iterable([[10],[1,2],['a']]))
[10, 1, 2, 'a']

I think the hints are clear enough; anyone with more questions should follow the link to the respective function doc.
History
Date User Action Args
2010-07-25 23:39:00terry.reedysetrecipients: + terry.reedy, georg.brandl, rhettinger, belopolsky, ezio.melotti, docs@python, lvogt
2010-07-25 23:38:59terry.reedysetmessageid: <1280101139.95.0.627031006222.issue7447@psf.upfronthosting.co.za>
2010-07-25 23:38:57terry.reedylinkissue7447 messages
2010-07-25 23:38:57terry.reedycreate