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.

classification
Title: Update docs for OrderedDict to reflect that regular dicts are ordered
Type: Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: methane, rhettinger
Priority: normal Keywords: patch

Created on 2019-02-21 00:26 by rhettinger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11966 merged rhettinger, 2019-02-21 04:29
PR 11972 merged miss-islington, 2019-02-21 08:05
Messages (3)
msg336163 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 00:26
Am working on a PR for this now.  The goals are to clarify the distinction between OrderedDict and regular dict, to remove outdated examples that no longer are the best way to solve a problem, and to move, and to add examples where OrderedDict will continue to be relevant.
msg336190 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 08:05
New changeset 49fd6dd887df6ea18dbb1a3c0f599239ccd1cb42 by Raymond Hettinger in branch 'master':
bpo-36059: Update OrderedDict() docs to reflect that regular dicts are now ordered (GH-11966)
https://github.com/python/cpython/commit/49fd6dd887df6ea18dbb1a3c0f599239ccd1cb42
msg336191 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 08:18
New changeset 300605990dc7441b19ab3fe7ea683094306d5ecd by Raymond Hettinger (Miss Islington (bot)) in branch '3.7':
bpo-36059: Update OrderedDict() docs to reflect that regular dicts are now ordered (GH-11966) (GH-#11972)
https://github.com/python/cpython/commit/300605990dc7441b19ab3fe7ea683094306d5ecd
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80240
2019-02-21 08:19:23rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-02-21 08:18:53rhettingersetmessages: + msg336191
2019-02-21 08:05:49miss-islingtonsetpull_requests: + pull_request11997
2019-02-21 08:05:33rhettingersetmessages: + msg336190
2019-02-21 04:30:57rhettingersetnosy: + methane
2019-02-21 04:29:55rhettingersetkeywords: + patch
stage: patch review
pull_requests: + pull_request11992
2019-02-21 00:26:29rhettingercreate