diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2001-07-13 17:38:08 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2001-07-13 17:38:08 (GMT) |
commit | 7717ad6817afe1d6f356159e70046639a1155ff5 (patch) | |
tree | 0e90a4e36dca9bd8fcbd217dc1a519adb28c3db4 /Lib | |
parent | 096001505617555992ac3a06450152f4b0e7a36c (diff) | |
download | cpython-7717ad6817afe1d6f356159e70046639a1155ff5.zip cpython-7717ad6817afe1d6f356159e70046639a1155ff5.tar.gz cpython-7717ad6817afe1d6f356159e70046639a1155ff5.tar.bz2 |
py-cvs-rel2_1 (Rev 1.6) merge - whitespace normalization
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/IdleConf.py | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/Lib/idlelib/IdleConf.py b/Lib/idlelib/IdleConf.py index 36cad51..37f4ef1 100644 --- a/Lib/idlelib/IdleConf.py +++ b/Lib/idlelib/IdleConf.py @@ -10,24 +10,24 @@ class IdleConfParser(ConfigParser): builtin_sections = {} for section in ('EditorWindow', 'Colors'): builtin_sections[section] = section - + def getcolor(self, sec, name): """Return a dictionary with foreground and background colors The return value is appropriate for passing to Tkinter in, e.g., a tag_config call. """ - fore = self.getdef(sec, name + "-foreground") - back = self.getdef(sec, name + "-background") + fore = self.getdef(sec, name + "-foreground") + back = self.getdef(sec, name + "-background") return {"foreground": fore, "background": back} def getdef(self, sec, options, raw=0, vars=None, default=None): """Get an option value for given section or return default""" - try: + try: return self.get(sec, options, raw, vars) - except (NoSectionError, NoOptionError): - return default + except (NoSectionError, NoOptionError): + return default def getsection(self, section): """Return a SectionConfigParser object""" @@ -37,10 +37,10 @@ class IdleConfParser(ConfigParser): exts = [] for sec in self.sections(): if self.builtin_sections.has_key(sec): - continue - # enable is a bool, but it may not be defined - if self.getdef(sec, 'enable') != '0': - exts.append(sec) + continue + # enable is a bool, but it may not be defined + if self.getdef(sec, 'enable') != '0': + exts.append(sec) return exts def reload(self): @@ -69,10 +69,10 @@ class SectionConfigParser: def getint(self, option): return self.config.getint(self.section, option) - + def getfloat(self, option): return self.config.getint(self.section, option) - + def getboolean(self, option): return self.config.getint(self.section, option) @@ -98,7 +98,7 @@ def load(dir): genplatfile = os.path.join(dir, "config-mac.txt") else: genplatfile = os.path.join(dir, "config-unix.txt") - + platfile = os.path.join(dir, "config-%s.txt" % sys.platform) try: @@ -110,4 +110,3 @@ def load(dir): os.path.join(homedir, ".idle"))) idleconf = IdleConfParser() - |