|
|
|
|
|
by cma
2727 days ago
|
|
Even while GC is delayed Python (CPython at least) will free some stuff through reference counting. Only circularly referenced stuff should stick around until the next GC run. So that can avoid lots of stack temporaries and stuff. |
|
Not entirely sure how you'd go about writing code like that, but it's possible.