This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tim.golden
Recipients exarkun, mattrussell, tim.golden
Date 2010-02-11.15:32:40
SpamBayes Score 0.0022809256
Marked as misclassified No
Message-id <4B742315.3080703@timgolden.me.uk>
In-reply-to <1265901988.91.0.740301104543.issue7910@psf.upfronthosting.co.za>
Content
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
History
Date User Action Args
2010-02-11 15:32:41tim.goldensetrecipients: + tim.golden, exarkun, mattrussell
2010-02-11 15:32:40tim.goldenlinkissue7910 messages
2010-02-11 15:32:40tim.goldencreate