Is there any way to manually remove an object which the garbage collection refuses to get rid of even when I call gc.collect()? Working in Python 3.0
|
1
|
|
||||||
|
|
|
Per the docs, |
||
|
|
|
|
When there are no references to your variable you can just go:
This will run garbage collection on all objects. |
||||
|
|
|
If the GC is refusing to destroy it, it's because you have a reference to it somewhere. Get rid of the reference and it will (eventually) go. For example:
Keep in mind that GC may not necessarily destroy your object unless it needs to. If your object is holding resources not under the management of Python (e.g., some trickery with C code called from Python), the object should provide a resource release call so you can do it when you want rather than when Python decides. |
||
|
|
|
|
It depends on what your Python is running on. Here's good article that explains the details Quoting: In current releases of CPython, each new assignment to x inside the loop will release the previously allocated resource. Using GC, this is not guaranteed. If you want to write code that will work with any Python implementation, you should explicitly close the resource; this will work regardless of GC:
|
||
|
|
|
|
|
||||||
|
