Antoon Pardon <[EMAIL PROTECTED]> writes:
> We could then have something like the following.
> 
> a = 5
> b = a
> a @= 7
> b ==> would result in 7.

Ouch!  :-(((

Can't you live with

a = [5]
b = a
a[0] = 7

so b[0] is now 7.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to