diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-07 15:24:36 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-07 15:24:36 +0200 |
commit | 899530029899b6602e7ef880765170b3a24d3e5a (patch) | |
tree | 29f6f1aaae09c1e03e673d56fb96846b1d84d455 /Lib/idlelib/configHandler.py | |
parent | c2255ac153194b285730034ae37d4dbc8a31c39b (diff) | |
download | cpython-git-899530029899b6602e7ef880765170b3a24d3e5a.tar.gz |
Issue #17114: IDLE now uses non-strict config parser.
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r-- | Lib/idlelib/configHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index e22ceb00cb..7fa481d893 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -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): """ |