[Zope] Deleting objectreferences

Dieter Maurer dieter@handshake.de
Sat, 3 Mar 2001 20:15:17 +0100 (CET)


Torsten Gallmeister writes:
 > After /Control_Panel/manage_debug I have many thousend objectreferences
 > to instances of this object.
Apparently, your instances contain a cyclic reference.
Python before version 2.0 can not collect cyclic garbage.

Look on http://www.python.org for tools to detect cycles.
If you can not think any there, look in the archive of
comp.lang.python.


Dieter