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 mcarans, rhettinger, serhiy.storchaka, steven.daprano
Date 2021-09-04.00:34:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1630715678.85.0.109566847712.issue45093@roundup.psfhosted.org>
In-reply-to
Content
-1 The dict API is to important to be burdened with a mostly useless and rarely needed method.  Besides we already have simple ways to do it, for example:

    assert list(d.items()) == list(e.items())

or:

    assert OrderedDict(d) == OrderedDict(e)
History
Date User Action Args
2021-09-04 02:27:55rhettingerunlinkissue45093 messages
2021-09-04 00:34:38rhettingersetrecipients: + rhettinger, steven.daprano, serhiy.storchaka, mcarans
2021-09-04 00:34:38rhettingersetmessageid: <1630715678.85.0.109566847712.issue45093@roundup.psfhosted.org>
2021-09-04 00:34:38rhettingerlinkissue45093 messages
2021-09-04 00:34:38rhettingercreate