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 stf
Recipients stf
Date 2015-06-01.15:01:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433170908.12.0.936972780857.issue24346@psf.upfronthosting.co.za>
In-reply-to
Content
>>> a = ([1,2],)
>>> a[0] += [3]

this raises an Type Error but adds the Elements to a.
So a is ([1, 2, 3],) afterwards.

This Problem doesn't occur, when you use a[0].append(3)
History
Date User Action Args
2015-06-01 15:01:48stfsetrecipients: + stf
2015-06-01 15:01:48stfsetmessageid: <1433170908.12.0.936972780857.issue24346@psf.upfronthosting.co.za>
2015-06-01 15:01:48stflinkissue24346 messages
2015-06-01 15:01:48stfcreate