cpython: cf98766f464e (original) (raw)

Mercurial > cpython

changeset 82043:cf98766f464e 3.2

Issue #17114: IDLE now uses non-strict config parser. [#17114]

Serhiy Storchaka storchaka@gmail.com
date Thu, 07 Feb 2013 15:24:36 +0200
parents ec70abe8c886
children c2ed79fbb9c6 148e6ebfe854
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

def Get(self, section, option, type=None, default=None, raw=False): """

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -212,6 +212,8 @@ Core and Builtins Library ------- +- Issue #17114: IDLE now uses non-strict config parser. +