Why is the destructor called when the CPython garbage collector is disabled?
- by Frederik
I'm trying to understand the internals of the CPython garbage collector, specifically when the destructor is called. So far, the behavior is intuitive, but the following case trips me up:
Disable the GC.
Create an object, then remove a reference to it.
The object is destroyed and the __del__ method is called.
I thought this would only happen if…