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 serhiy.storchaka
Recipients rhettinger, serhiy.storchaka
Date 2013-02-26.10:28:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361874495.09.0.394992661852.issue17300@psf.upfronthosting.co.za>
In-reply-to
Content
http://permalink.gmane.org/gmane.comp.python.ideas/19669

>>> from itertools import islice, count
>>> it = count()
>>> for i in range(1000000):
...     it = islice(it, 0)
... 
>>> del it
Segmentation fault

This looks very similar to the crash in tee() (issue13454).
History
Date User Action Args
2013-02-26 10:28:15serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2013-02-26 10:28:15serhiy.storchakasetmessageid: <1361874495.09.0.394992661852.issue17300@psf.upfronthosting.co.za>
2013-02-26 10:28:15serhiy.storchakalinkissue17300 messages
2013-02-26 10:28:14serhiy.storchakacreate