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 njayinthehouse
Recipients njayinthehouse
Date 2018-06-16.15:13:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529161995.75.0.56676864532.issue33879@psf.upfronthosting.co.za>
In-reply-to
Content
Seems like a bug.

    >>> a = (1, [1])
    >>> a[1] += [2]
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: 'tuple' object does not support item assignment
    >>> a
    (1, [1, 2])
History
Date User Action Args
2018-06-16 15:13:15njayinthehousesetrecipients: + njayinthehouse
2018-06-16 15:13:15njayinthehousesetmessageid: <1529161995.75.0.56676864532.issue33879@psf.upfronthosting.co.za>
2018-06-16 15:13:15njayinthehouselinkissue33879 messages
2018-06-16 15:13:15njayinthehousecreate