Python language problem

ripleyfu at gmail.com ripleyfu at gmail.com
Wed Jun 7 07:02:26 EDT 2006


>>> class A:
...   pass
...
>>> a = A()
>>> b = a
>>> del b
>>> a
<__main__.A instance at 0x00B91BC0>
I want to delete 'a' through 'b', why It does't? 
How can I do that?




More information about the Python-list mailing list