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: Fix csv module comment regarding dict insertion order
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: adelfino, docs@python, methane, miss-islington
Priority: normal Keywords: patch

Created on 2018-06-07 19:12 by adelfino, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7490 merged adelfino, 2018-06-07 19:13
PR 7531 merged miss-islington, 2018-06-08 12:52
Messages (3)
msg318961 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-06-07 19:12
The csv module says "Python’s dict objects are not ordered". PR fixes this , leaving a comment on the rationale.
msg319057 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2018-06-08 12:51
New changeset 6860629d87d0f6728ff7430453d4900b695adf7b by INADA Naoki (Andrés Delfino) in branch 'master':
bpo-33798: Update csv document about dict order (GH-7490)
https://github.com/python/cpython/commit/6860629d87d0f6728ff7430453d4900b695adf7b
msg319061 - (view) Author: miss-islington (miss-islington) Date: 2018-06-08 13:33
New changeset 9f56a93e8986e06ac61a7356082fe8be285f26a4 by Miss Islington (bot) in branch '3.7':
bpo-33798: Update csv document about dict order (GH-7490)
https://github.com/python/cpython/commit/9f56a93e8986e06ac61a7356082fe8be285f26a4
History
Date User Action Args
2022-04-11 14:59:01adminsetgithub: 77979
2018-06-08 13:38:04methanesetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-06-08 13:33:42miss-islingtonsetnosy: + miss-islington
messages: + msg319061
2018-06-08 12:52:23miss-islingtonsetpull_requests: + pull_request7170
2018-06-08 12:51:15methanesetnosy: + methane
messages: + msg319057
2018-06-07 19:13:10adelfinosetkeywords: + patch
stage: patch review
pull_requests: + pull_request7115
2018-06-07 19:12:49adelfinocreate