[New-bugs-announce] [issue33504] configparser should use dict instead of OrderedDict in 3.7+

John Reese report at bugs.python.org
Mon May 14 14:18:18 EDT 2018


New submission from John Reese <jreese at leetcode.net>:

The configparser module uses `collections.OrderedDict` as its default, but this is no longer necessary in 3.7+ due to the semantics of core dictionaries being ordered by design.  configparser should just use `dict` by default now, instead.

----------
components: Library (Lib)
messages: 316547
nosy: jreese
priority: normal
severity: normal
status: open
title: configparser should use dict instead of OrderedDict in 3.7+
type: enhancement
versions: Python 3.7, Python 3.8

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue33504>
_______________________________________


More information about the New-bugs-announce mailing list