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 ammar2
Recipients ammar2, bruceblosser
Date 2020-02-15.23:29:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581809395.69.0.0896531566009.issue39641@roundup.psfhosted.org>
In-reply-to
Content
tuple + tuple is NOT tuple concatenation. It adds each individual member of the tuple. So for example

(a, b) + (c, d)

results in

(a + c, b + d)
History
Date User Action Args
2020-02-15 23:30:22ammar2unlinkissue39641 messages
2020-02-15 23:29:55ammar2setrecipients: + ammar2, bruceblosser
2020-02-15 23:29:55ammar2setmessageid: <1581809395.69.0.0896531566009.issue39641@roundup.psfhosted.org>
2020-02-15 23:29:55ammar2linkissue39641 messages
2020-02-15 23:29:55ammar2create