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 rhettinger
Recipients remi.lapeyre, rhettinger, yesheng
Date 2020-06-03.15:57:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591199843.55.0.735649808873.issue40853@roundup.psfhosted.org>
In-reply-to
Content
> is it possible to make dict give consistent result?

That is unlikely (there isn't much need, it would introduce a cross-type dependency, it would be awkward dicts which use keys in many more ways than sets do).

For the time being, a user should explicitly convert to a frozenset:

    frozenset(s) in d
History
Date User Action Args
2020-06-03 15:57:23rhettingersetrecipients: + rhettinger, remi.lapeyre, yesheng
2020-06-03 15:57:23rhettingersetmessageid: <1591199843.55.0.735649808873.issue40853@roundup.psfhosted.org>
2020-06-03 15:57:23rhettingerlinkissue40853 messages
2020-06-03 15:57:23rhettingercreate