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 remi.lapeyre
Recipients remi.lapeyre, yesheng
Date 2020-06-03.10:38:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591180718.16.0.837628492646.issue40853@roundup.psfhosted.org>
In-reply-to
Content
The set is converted to a frozenset before the comparison so 

>>> {1,2} in {frozenset({1,2}), 3}

is equivalent to 

>>> frozenset({1,2}) in {frozenset({1,2}), 3}


This was introduced on purpose 17 years ago in 19c2d778 so it's unlikely to change.
History
Date User Action Args
2020-06-03 10:38:38remi.lapeyresetrecipients: + remi.lapeyre, yesheng
2020-06-03 10:38:38remi.lapeyresetmessageid: <1591180718.16.0.837628492646.issue40853@roundup.psfhosted.org>
2020-06-03 10:38:38remi.lapeyrelinkissue40853 messages
2020-06-03 10:38:38remi.lapeyrecreate