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 josh.r
Recipients Vasantha Ganesh Kanniappan, josh.r, rhettinger
Date 2018-10-24.01:42:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540345375.85.0.788709270274.issue35043@psf.upfronthosting.co.za>
In-reply-to
Content
Blech. Copy'n'paste error in last post:

a = list(itertools.chain.from_iterable(*my_list))

should be:

a = list(itertools.chain.from_iterable(my_list))

(Note removal of *, which is the whole point of from_iterable)
History
Date User Action Args
2018-10-24 01:42:55josh.rsetrecipients: + josh.r, rhettinger, Vasantha Ganesh Kanniappan
2018-10-24 01:42:55josh.rsetmessageid: <1540345375.85.0.788709270274.issue35043@psf.upfronthosting.co.za>
2018-10-24 01:42:55josh.rlinkissue35043 messages
2018-10-24 01:42:55josh.rcreate