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: Remove non-ordered dict comment from plistlib
Type: 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, ned.deily
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 7495 merged adelfino, 2018-06-07 20:13
PR 7546 merged miss-islington, 2018-06-08 21:52
Messages (4)
msg318969 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-06-07 20:12
plistlib documentation says:

"The exact structure of the plist can be recovered by using collections.OrderedDict (although the order of keys shouldn't be important in plist files)"

This is no longer necessary, since dict objects preserve insertion order. PR changes this.
msg319109 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-06-08 21:51
New changeset 1cbdb2208aa309cf288ee0b53f0ecd85279bb934 by Ned Deily (Andrés Delfino) in branch 'master':
bpo-33801: Remove non-ordered dict comment from plistlib doc (GH-7495)
https://github.com/python/cpython/commit/1cbdb2208aa309cf288ee0b53f0ecd85279bb934
msg319111 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-06-08 21:57
New changeset 416fbe41b783d5686b9cb7ff7f8af94b41dc16b8 by Ned Deily (Miss Islington (bot)) in branch '3.7':
bpo-33801: Remove non-ordered dict comment from plistlib doc (GH-7495) (GH-7546)
https://github.com/python/cpython/commit/416fbe41b783d5686b9cb7ff7f8af94b41dc16b8
msg319112 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-06-08 21:58
Thanks for the PR!
History
Date User Action Args
2022-04-11 14:59:01adminsetgithub: 77982
2018-06-08 21:58:41ned.deilysetstatus: open -> closed
type: enhancement ->
messages: + msg319112

resolution: fixed
stage: patch review -> resolved
2018-06-08 21:57:51ned.deilysetmessages: + msg319111
2018-06-08 21:52:38miss-islingtonsetpull_requests: + pull_request7179
2018-06-08 21:51:28ned.deilysetnosy: + ned.deily
messages: + msg319109
2018-06-07 20:13:50adelfinosetkeywords: + patch
stage: patch review
pull_requests: + pull_request7120
2018-06-07 20:12:56adelfinocreate