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

This commit is contained in:
Serhiy Storchaka 2013-02-07 15:25:33 +02:00
commit d971793d15
2 changed files with 3 additions and 1 deletions

View File

@ -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):
"""

View File

@ -235,6 +235,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.