mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
17 lines
469 B
Python
17 lines
469 B
Python
|
|
# Documentation
|
|
# http://www.python.org/doc/2.2.3/lib/module-gc.html
|
|
# http://www.python.org/~jeremy/weblog/030410.html
|
|
|
|
# Before you chase down leaks, make sure you Config:
|
|
# want-dev 0
|
|
|
|
# You may also want to run pyo-shell so __debug__ is False and assert code is removed.
|
|
|
|
import gc
|
|
gc.set_debug(gc.DEBUG_LEAK)
|
|
gc.collect()
|
|
print gc.garbage
|
|
|
|
# Inside DistributedObjectAI, you can uncomment the __del__ function to
|
|
# see when your objects are being deleted (or not)
|