Message184631
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. |
|
Date |
User |
Action |
Args |
2013-03-19 13:28:33 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, arigo, benjamin.peterson, ezio.melotti, alex |
2013-03-19 13:28:33 | serhiy.storchaka | set | messageid: <1363699713.32.0.615788169885.issue14010@psf.upfronthosting.co.za> |
2013-03-19 13:28:33 | serhiy.storchaka | link | issue14010 messages |
2013-03-19 13:28:33 | serhiy.storchaka | create | |
|