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 PyryP
Recipients PyryP
Date 2011-11-22.16:10:44
SpamBayes Score 0.00087947526
Marked as misclassified No
Message-id <1321978245.14.0.0332901316698.issue13454@psf.upfronthosting.co.za>
In-reply-to
Content
Running the following results in a Segmentation fault on Ubuntu 11.10 64-bit with both python and python3.

from itertools import *
c = count()
a,b = tee(c)
for i in range(10000000):
 next(a)
del(b)
History
Date User Action Args
2011-11-22 16:10:45PyryPsetrecipients: + PyryP
2011-11-22 16:10:45PyryPsetmessageid: <1321978245.14.0.0332901316698.issue13454@psf.upfronthosting.co.za>
2011-11-22 16:10:44PyryPlinkissue13454 messages
2011-11-22 16:10:44PyryPcreate