Commit 705ef7a0 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #17114: IDLE now uses non-strict config parser.

parents f5d245a0 89953002
...@@ -37,7 +37,7 @@ class IdleConfParser(ConfigParser): ...@@ -37,7 +37,7 @@ class IdleConfParser(ConfigParser):
cfgFile - string, fully specified configuration file name cfgFile - string, fully specified configuration file name
""" """
self.file=cfgFile 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): def Get(self, section, option, type=None, default=None, raw=False):
""" """
......
...@@ -163,6 +163,8 @@ Core and Builtins ...@@ -163,6 +163,8 @@ Core and Builtins
Library Library
------- -------
- Issue #17114: IDLE now uses non-strict config parser.
- Issue #16723: httplib.HTTPResponse no longer marked closed when the connection - Issue #16723: httplib.HTTPResponse no longer marked closed when the connection
is automatically closed. is automatically closed.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment