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 mark.dickinson
Recipients andy.chugunov, flox, mark.dickinson, r.david.murray, ronaldoussoren
Date 2013-05-18.07:25:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368861933.63.0.432415911062.issue17973@psf.upfronthosting.co.za>
In-reply-to
Content
@andy.chugunov: tuples are immutable in the sense that you can't put a new object into a tuple or remove objects from a tuple.  That doesn't mean that tuples can't contain mutable objects, or prevent you from mutating the objects inside a tuple.

So the append method call is fine:  it's not modifying the tuple itself (the tuple still has references to exactly the same objects both before and after the append call);  it's merely mutating one the objects inside the tuple.
History
Date User Action Args
2013-05-18 07:25:33mark.dickinsonsetrecipients: + mark.dickinson, ronaldoussoren, r.david.murray, flox, andy.chugunov
2013-05-18 07:25:33mark.dickinsonsetmessageid: <1368861933.63.0.432415911062.issue17973@psf.upfronthosting.co.za>
2013-05-18 07:25:33mark.dickinsonlinkissue17973 messages
2013-05-18 07:25:33mark.dickinsoncreate