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 ET
Recipients ET
Date 2021-09-17.07:45:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631864712.39.0.927723834147.issue45230@roundup.psfhosted.org>
In-reply-to
Content
I use python3.7 python3.6 python2.7, and run the following code: 
print(3==3 is not True)
print(3==3 is True)
print(3==2 is not True)
print(3==2 is True)
I got the same results as follow: 
True
False
False
False
but I don't think it is a reasonable result, it may be bugs?
History
Date User Action Args
2021-09-17 07:45:12ETsetrecipients: + ET
2021-09-17 07:45:12ETsetmessageid: <1631864712.39.0.927723834147.issue45230@roundup.psfhosted.org>
2021-09-17 07:45:12ETlinkissue45230 messages
2021-09-17 07:45:12ETcreate