cpython: c2ed79fbb9c6 (original) (raw)
Mercurial > cpython
changeset 82044:c2ed79fbb9c6 3.3
Issue #17114: IDLE now uses non-strict config parser. [#17114]
Serhiy Storchaka storchaka@gmail.com | |
---|---|
date | Thu, 07 Feb 2013 15:25:09 +0200 |
parents | e49cc1585966(current diff)cf98766f464e(diff) |
children | 877fae8d6f5b 452344620c97 |
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 @@ -163,6 +163,8 @@ Core and Builtins Library ------- +- Issue #17114: IDLE now uses non-strict config parser. +