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:36:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361875007.05.0.145509450066.issue17300@psf.upfronthosting.co.za>
In-reply-to
Content
And same issue with filter:

>>> it = iter([])
>>> for i in range(1000000):
...     it = filter(None, it)
... 
>>> del it
Segmentation fault
History
Date User Action Args
2013-02-26 10:36:47serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2013-02-26 10:36:47serhiy.storchakasetmessageid: <1361875007.05.0.145509450066.issue17300@psf.upfronthosting.co.za>
2013-02-26 10:36:46serhiy.storchakalinkissue17300 messages
2013-02-26 10:36:46serhiy.storchakacreate