ownership problem?

elbertlev at hotmail.com elbertlev at hotmail.com
Mon Nov 21 01:09:34 EST 2005


Yes!
Python uses auto garbage collection. As soon as the object reference
count becomes 0 it is removed from existence. So the problem typical
for C/C++: accessing pointers
to already deleted objects does not exist in Python.




More information about the Python-list mailing list