Python language problem

Boris Borcic bborcic at gmail.com
Wed Jun 7 07:10:07 EDT 2006


ripleyfu at gmail.com wrote:
>>>> 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?

del a,b




More information about the Python-list mailing list