Using objgraph, I found a bunch of objects like this:

Will Python's garbage collector deal with cycles like this, or will it leak?
A slightly wider view of the loop:

|
Using objgraph, I found a bunch of objects like this:
Will Python's garbage collector deal with cycles like this, or will it leak? A slightly wider view of the loop:
| |||
|
feedback
|
|
Python's standard reference counting mechanism cannot free cycles, so the structure in your example would leak. The supplemental garbage collection facility, however, is enabled by default and should be able to free that structure, if none of its components are reachable from the outside anymore and they do not have If they do, the garbage collector will not free them because it cannot determine a safe order to run these | |||||||||||
feedback
|
|
Python's GC is designed to traverse all live objects to locate and eliminate reference cycles with no external references. You can validate that is what is happening by running | ||||
|
feedback
|
|
To extend on Frédéric's answer a bit, the "reference counts" section of the docs explains the supplementary cycle detection nicely. Since I find explaining things a good way to confirm I understand it, here are some examples... With these two classes:
Creating an object and losing the reference from
If we make a reference loop between two objects with no
Then make a reference loop between the two objects:
(the All is fine, until even one of the objects in the cycle contains a
As Paul mentioned, the loop can be broken with a
Then when the
Oh, objgraph would have helpfully indicated the problematic | |||
|
feedback
|
|
If you use weakrefs for your parent pointers, then GC will happen normally. | |||
|
feedback
|