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: Document how collections.ChainMap() determines iteration order
Type: Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: rhettinger
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 11969 merged rhettinger, 2019-02-21 06:42
PR 11978 merged miss-islington, 2019-02-21 17:12
Messages (3)
msg336165 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 00:30
Am working on a PR for this now.

Prior to regular dicts becoming ordered, the was no expectation for ChainMap() to have any particular order.  Now that such an expectation might exist, I need to document what ChainMap() does and perhaps why it does it.
msg336239 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 17:12
New changeset 86f093f71a594dcaf21b67ba13dda72863e9bde9 by Raymond Hettinger in branch 'master':
bpo-36060: Document how collections.ChainMap() determines iteration order (GH-11969)
https://github.com/python/cpython/commit/86f093f71a594dcaf21b67ba13dda72863e9bde9
msg336244 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 17:47
New changeset 7121a6eeb7941f36fb9e7eae28ec24ecfa533e81 by Raymond Hettinger (Miss Islington (bot)) in branch '3.7':
bpo-36060: Document how collections.ChainMap() determines iteration order (GH-11969) (GH-11978)
https://github.com/python/cpython/commit/7121a6eeb7941f36fb9e7eae28ec24ecfa533e81
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80241
2019-02-21 17:47:48rhettingersetmessages: + msg336244
2019-02-21 17:17:08rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-02-21 17:12:44miss-islingtonsetpull_requests: + pull_request12002
2019-02-21 17:12:18rhettingersetmessages: + msg336239
2019-02-21 06:42:26rhettingersetkeywords: + patch
stage: patch review
pull_requests: + pull_request11995
2019-02-21 00:30:45rhettingercreate