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 steven.daprano
Recipients ammar2, bruceblosser, steven.daprano
Date 2020-02-16.03:00:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581822003.1.0.483390002962.issue39641@roundup.psfhosted.org>
In-reply-to
Content
> The concatenation of two tuples into a third tuple, using the + command, causes an error if every member of each of the two tuples is NOT a string!

Works for me:

    py> ("Hello", 1, None) + (23, 19.5, "Goodbye")
    ('Hello', 1, None, 23, 19.5, 'Goodbye')

If you still think there is a bug here, please follow the advice given here

http://www.sscce.org/

before re-opening this ticket.
History
Date User Action Args
2020-02-16 03:00:03steven.dapranosetrecipients: + steven.daprano, ammar2, bruceblosser
2020-02-16 03:00:03steven.dapranosetmessageid: <1581822003.1.0.483390002962.issue39641@roundup.psfhosted.org>
2020-02-16 03:00:02steven.dapranolinkissue39641 messages
2020-02-16 03:00:02steven.dapranocreate