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 terry.reedy
Date 2014-11-22.21:56:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416693388.96.0.0990071080113.issue22920@psf.upfronthosting.co.za>
In-reply-to
Content
import itertools

l = []
it = itertools.chain.from_iterable(l)
l.append(it)
next(it)

Ian Kelly (python-list, version unspecified) got "Segmentation fault (core dumped)".  With 2.7, 3.4.2, 3.5, I get same in interactive interpreter, the Windows "python has stopped working" box from console, or subprocess hang with Idle.
History
Date User Action Args
2014-11-22 21:56:28terry.reedysetrecipients: + terry.reedy
2014-11-22 21:56:28terry.reedysetmessageid: <1416693388.96.0.0990071080113.issue22920@psf.upfronthosting.co.za>
2014-11-22 21:56:28terry.reedylinkissue22920 messages
2014-11-22 21:56:28terry.reedycreate