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 stutzbach
Recipients Jim.Jewett, amaury.forgeotdarc, asvetlov, dstanek, kristjan.jonsson, loewis, pitrou, rhettinger, stutzbach, tim.peters
Date 2012-04-06.20:35:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333744511.75.0.67434985564.issue9141@psf.upfronthosting.co.za>
In-reply-to
Content
Are __del__ and tp_del getting conflated in this conversation?  I don't see a __del__ method on generator objects:

filfre:$ python3.1 
Python 3.1.2 (r312:79147, Dec  9 2011, 20:47:34) 
[GCC 4.4.3] on linux2
>>> (i for i in range(5)).__del__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'generator' object has no attribute '__del__'

but I may be missing something.
History
Date User Action Args
2012-04-06 20:35:11stutzbachsetrecipients: + stutzbach, tim.peters, loewis, rhettinger, amaury.forgeotdarc, pitrou, kristjan.jonsson, dstanek, asvetlov, Jim.Jewett
2012-04-06 20:35:11stutzbachsetmessageid: <1333744511.75.0.67434985564.issue9141@psf.upfronthosting.co.za>
2012-04-06 20:35:11stutzbachlinkissue9141 messages
2012-04-06 20:35:11stutzbachcreate