mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +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):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue