Issue #17114: IDLE now uses non-strict config parser.
This commit is contained in:
commit
705ef7a03d
|
@ -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
|
||||||
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.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue