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 mattrussell
Recipients mattrussell
Date 2010-02-11.15:26:26
SpamBayes Score 0.12442453
Marked as misclassified No
Message-id <1265901988.91.0.740301104543.issue7910@psf.upfronthosting.co.za>
In-reply-to
Content
Tuples, as we know are designed to immutable.

Hence I'm questioning if the following behavior is considered a defect:

>>> t = (1, 2)
>>> t += (1, 2, 3)
>>> t
(1, 2, 3)

?
History
Date User Action Args
2010-02-11 15:26:29mattrussellsetrecipients: + mattrussell
2010-02-11 15:26:28mattrussellsetmessageid: <1265901988.91.0.740301104543.issue7910@psf.upfronthosting.co.za>
2010-02-11 15:26:27mattrusselllinkissue7910 messages
2010-02-11 15:26:27mattrussellcreate