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 ikelly
Recipients ikelly
Date 2014-11-21.18:42:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416595372.6.0.247378552877.issue22911@psf.upfronthosting.co.za>
In-reply-to
Content
I expect this should result in a recursion depth exceeded error, not a segmentation fault.

$ cat test.py
import itertools

l = []
it = itertools.chain.from_iterable(l)
l.append(it)
next(it)
$ python3 test.py
Segmentation fault (core dumped)
History
Date User Action Args
2014-11-21 18:42:52ikellysetrecipients: + ikelly
2014-11-21 18:42:52ikellysetmessageid: <1416595372.6.0.247378552877.issue22911@psf.upfronthosting.co.za>
2014-11-21 18:42:52ikellylinkissue22911 messages
2014-11-21 18:42:52ikellycreate