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 alex, arigo, benjamin.peterson, ezio.melotti, serhiy.storchaka
Date 2013-03-19.13:28:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363699713.32.0.615788169885.issue14010@psf.upfronthosting.co.za>
In-reply-to
Content
I'm trying to solve this issue (it seemed easy), but the bug is worse than expected. Python crashed even without iteration at all.

it = 'abracadabra'
for _ in range(1000000):
    it = filter(bool, it)

del it

And fixing a recursive deallocator is more harder than iterator.

What can we do if a deallocator raises RuntimeError due to maximum recursion depth exceeded.
History
Date User Action Args
2013-03-19 13:28:33serhiy.storchakasetrecipients: + serhiy.storchaka, arigo, benjamin.peterson, ezio.melotti, alex
2013-03-19 13:28:33serhiy.storchakasetmessageid: <1363699713.32.0.615788169885.issue14010@psf.upfronthosting.co.za>
2013-03-19 13:28:33serhiy.storchakalinkissue14010 messages
2013-03-19 13:28:33serhiy.storchakacreate