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.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to