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 ethan.furman
Recipients ethan.furman
Date 2021-04-27.19:11:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1619550668.75.0.616141985831.issue43957@roundup.psfhosted.org>
In-reply-to
Content
In 3.12 `__contains__` will check for both members and values:

    Color.RED in Color  --> True
    1 in Color          --> True
    'RED' in Color      --> False

Add DeprecationWarning for now.
History
Date User Action Args
2021-04-27 19:11:08ethan.furmansetrecipients: + ethan.furman
2021-04-27 19:11:08ethan.furmansetmessageid: <1619550668.75.0.616141985831.issue43957@roundup.psfhosted.org>
2021-04-27 19:11:08ethan.furmanlinkissue43957 messages
2021-04-27 19:11:08ethan.furmancreate