On Sun, 08 Aug 2010 17:14:08 +0300, Costin Gament wrote:

> Thank you for your answer, but it seems I didn't make myself clear. Take
> the code:
> class foo:
>   a = 0
>   b = 0
> c1 = foo()
> c1.a = 5
> c2 = foo()
> print c2.a
> 5

Incorrect.

>>> class foo:
...   a = 0
...   b = 0
...
>>> c1 = foo()
>>> c1.a = 5
>>> c2 = foo()
>>> print c2.a
0



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

Reply via email to