Lines Matching refs:collector
54 class that implements the garbage collector protocol and the child class
72 resized object or ``NULL`` on failure. *op* must not be tracked by the collector yet.
78 collector. The collector can run at unexpected times so objects must be
86 Returns non-zero if the object implements the garbage collector protocol,
89 The object cannot be tracked by the garbage collector if this function returns 0.
95 currently tracked by the garbage collector and 0 otherwise.
105 already finalized by the garbage collector and 0 otherwise.
121 collector. Note that :c:func:`PyObject_GC_Track` can be called again on
186 collector will call this method if it detects that this object is involved
198 Perform a full garbage collection, if the garbage collector is enabled.
203 If the garbage collector is disabled or already collecting,
211 Enable the garbage collector: similar to :func:`gc.enable`.
219 Disable the garbage collector: similar to :func:`gc.disable`.
227 Query the state of the garbage collector: similar to :func:`gc.isenabled`.