Tim Golden <m...@timgolden.me.uk> added the comment:

Just think about it for a minute:

t = (1, 2)
print id (t), t
t += (1, 2, 3)
print id (t), t

Not mutating, merely creating a new new object
and giving it the same name

----------
nosy: +tim.golden

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue7910>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to