How does Python handle reference cycles?
Variables, references, and memory model
Audio flashcard · 0:16Nortren·
How does Python handle reference cycles?
0:16
Reference counting alone cannot collect cycles, where objects reference each other in a loop. Python has a generational garbage collector that periodically detects and collects unreachable cycles. It is provided by the gc module and divides objects into three generations based on their survival history.
---
docs.python.org