mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Issue #17114: IDLE now uses non-strict config parser.
This commit is contained in:
commit
705ef7a03d
2 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,7 @@ class IdleConfParser(ConfigParser):
|
|||
cfgFile - string, fully specified configuration file name
|
||||
"""
|
||||
self.file=cfgFile
|
||||
ConfigParser.__init__(self,defaults=cfgDefaults)
|
||||
ConfigParser.__init__(self, defaults=cfgDefaults, strict=False)
|
||||
|
||||
def Get(self, section, option, type=None, default=None, raw=False):
|
||||
"""
|
||||
|
|
|
@ -163,6 +163,8 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #17114: IDLE now uses non-strict config parser.
|
||||
|
||||
- Issue #16723: httplib.HTTPResponse no longer marked closed when the connection
|
||||
is automatically closed.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue