*** ConfigParser.py Wed May 29 16:51:30 2002 --- ConfigParser.py.new Wed May 29 16:52:01 2002 *************** *** 319,330 **** def has_option(self, section, option): """Check for the existence of a given option in a given section.""" if not section or section == "DEFAULT": return self.__defaults.has_key(option) elif not self.has_section(section): return 0 else: - option = self.optionxform(option) return self.__sections[section].has_key(option) def set(self, section, option, value): --- 319,330 ---- def has_option(self, section, option): """Check for the existence of a given option in a given section.""" + option = self.optionxform(option) if not section or section == "DEFAULT": return self.__defaults.has_key(option) elif not self.has_section(section): return 0 else: return self.__sections[section].has_key(option) def set(self, section, option, value):