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 AlexWaygood, rhettinger, stutzbach
Date 2021-07-27.20:43:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627418596.68.0.0394499240784.issue44750@roundup.psfhosted.org>
In-reply-to
Content
Alex, thank for noticing this, but it is not a bug.

MutableMapping is meant to describe all mapping classes including those that don't remember insertion order.

The builtin dict() type implements MutableMapping but also adds ordering guarantees.  It is common and normal for concrete classes to implement additional behaviors and guarantees beyond those specified in the abstract base class.
History
Date User Action Args
2021-07-27 20:43:16rhettingersetrecipients: + rhettinger, stutzbach, AlexWaygood
2021-07-27 20:43:16rhettingersetmessageid: <1627418596.68.0.0394499240784.issue44750@roundup.psfhosted.org>
2021-07-27 20:43:16rhettingerlinkissue44750 messages
2021-07-27 20:43:16rhettingercreate