summaryrefslogtreecommitdiff
path: root/Lib/idlelib/configHandler.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-07 15:25:09 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-07 15:25:09 +0200
commit705ef7a03d2d2293b9872800810a2a29d5e5f0cc (patch)
tree80272d94287ce24e258cdae9776dad2c13f17666 /Lib/idlelib/configHandler.py
parentf5d245a0a0d8c00ca986bd84e54b940ab0eb75cf (diff)
parent899530029899b6602e7ef880765170b3a24d3e5a (diff)
downloadcpython-git-705ef7a03d2d2293b9872800810a2a29d5e5f0cc.tar.gz
Issue #17114: IDLE now uses non-strict config parser.
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r--Lib/idlelib/configHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py
index 405c7a138e..5bf2668939 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):
"""