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:31:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581809483.08.0.502689390966.issue39641@roundup.psfhosted.org>
In-reply-to
Content
Are you trying to concatenate a single string? If so keep in mind you need a trailing comma:

>>> (1, 2) + (3, 4) + ('a',)
(1, 2, 3, 4, 'a')
>>> (1, 2) + (3, 4) + ('a')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only concatenate tuple (not "str") to tuple
History
Date User Action Args
2020-02-15 23:31:23ammar2setrecipients: + ammar2, bruceblosser
2020-02-15 23:31:23ammar2setmessageid: <1581809483.08.0.502689390966.issue39641@roundup.psfhosted.org>
2020-02-15 23:31:23ammar2linkissue39641 messages
2020-02-15 23:31:23ammar2create