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 Dan Rose
Recipients Dan Rose
Date 2018-07-11.19:32:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531337577.35.0.56676864532.issue34100@psf.upfronthosting.co.za>
In-reply-to
Content
Another curious case:

    a = (500,500); b = (500,500)
    print(a[0] is b[0]) # True
    print(a[0] is b[1]) # False
    print(a[1] is b[0]) # False
    print(a[1] is b[1]) # True
History
Date User Action Args
2018-07-11 19:32:57Dan Rosesetrecipients: + Dan Rose
2018-07-11 19:32:57Dan Rosesetmessageid: <1531337577.35.0.56676864532.issue34100@psf.upfronthosting.co.za>
2018-07-11 19:32:57Dan Roselinkissue34100 messages
2018-07-11 19:32:57Dan Rosecreate