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 pitrou
Recipients LambertDW, flox, pitrou, skrah
Date 2009-12-10.16:35:11
SpamBayes Score 0.008053722
Marked as misclassified No
Message-id <1260462912.74.0.0517668127935.issue7466@psf.upfronthosting.co.za>
In-reply-to
Content
An even simpler way to reproduce:

>>> import gc
>>> def g(it):
...   for x in it:
...     gc.collect()
...     yield x
... 
>>> t = tuple(g(range(100)))
Erreur de segmentation


This is probably caused by the GC optimizations I introduced in trunk
and 3.1.
History
Date User Action Args
2009-12-10 16:35:13pitrousetrecipients: + pitrou, LambertDW, skrah, flox
2009-12-10 16:35:12pitrousetmessageid: <1260462912.74.0.0517668127935.issue7466@psf.upfronthosting.co.za>
2009-12-10 16:35:11pitroulinkissue7466 messages
2009-12-10 16:35:11pitroucreate