Issue 33800: Fix default argument for parameter dict_type of ConfigParser/RawConfigParser (original) (raw)

Issue33800

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.

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/77981

classification

Title: Fix default argument for parameter dict_type of ConfigParser/RawConfigParser
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, ned.deily
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 7494 merged adelfino,2018-06-07 20:01
PR 7542 merged miss-islington,2018-06-08 19:20
Messages (7)
msg318968 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-06-07 20:01
Default argument of parameter dict_type of ConfigParser/RawConfigParser is shown as "collections.OrderedDict", while it recently migrated to "dict". PR fixes this, documents the change to dict, and fixes a versionchanged changed directive in "items" with wrong indentation.
msg319096 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-06-08 19:19
New changeset 3b0b90c8c3b8161f0ae9005b83b9b6449d4a8476 by Ned Deily (Andrés Delfino) in branch 'master': bpo-33800: Fix default argument for parameter dict_type of ConfigParser/RawConfigParser (GH-7494) https://github.com/python/cpython/commit/3b0b90c8c3b8161f0ae9005b83b9b6449d4a8476
msg319097 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-06-08 19:26
New changeset dc20d9d1026282a2879992f4cef517a270c8a467 by Ned Deily (Miss Islington (bot)) in branch '3.7': bpo-33800: Fix default argument for parameter dict_type of ConfigParser/RawConfigParser (GH-7494) (GH-7542) https://github.com/python/cpython/commit/dc20d9d1026282a2879992f4cef517a270c8a467
msg319098 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-06-08 19:26
Thanks, Andrés!
msg334610 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-01-31 08:30
This should be reverted in 3.7. bpo-33504 changed dict_type from 3.8+, not 3.7.
msg334611 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-01-31 08:34
I revert this change in GH-35865.
msg334614 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-01-31 08:53
I'm sorry. bpo-35865 (GH-11711)
History
Date User Action Args
2022-04-11 14:59:01 admin set github: 77981
2019-01-31 08:53:05 methane set messages: +
2019-01-31 08:34:26 methane set messages: +
2019-01-31 08:30:23 methane set nosy: + methanemessages: +
2018-06-08 19:26:43 ned.deily set status: open -> closedversions: + Python 3.7messages: + resolution: fixedstage: patch review -> resolved
2018-06-08 19:26:09 ned.deily set messages: +
2018-06-08 19:20:46 miss-islington set pull_requests: + <pull%5Frequest7177>
2018-06-08 19:19:23 ned.deily set nosy: + ned.deilymessages: +
2018-06-07 20:01:46 adelfino set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest7119>
2018-06-07 20:01:29 adelfino create