cpython: 877fae8d6f5b (original) (raw)
Mercurial > cpython
changeset 82045:877fae8d6f5b
Issue #17114: IDLE now uses non-strict config parser. [#17114]
Serhiy Storchaka storchaka@gmail.com | |
---|---|
date | Thu, 07 Feb 2013 15:25:33 +0200 |
parents | 3236ebe7dd82(current diff)c2ed79fbb9c6(diff) |
children | f0d603948cff |
files | Lib/idlelib/configHandler.py Misc/NEWS |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-)[+] [-] Lib/idlelib/configHandler.py 2 Misc/NEWS 2 |
line wrap: on
line diff
--- 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)[](#l1.7)
ConfigParser.__init__(self, defaults=cfgDefaults, strict=False)[](#l1.8)
def Get(self, section, option, type=None, default=None, raw=False): """
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -235,6 +235,8 @@ Core and Builtins Library ------- +- Issue #17114: IDLE now uses non-strict config parser. +