Searched refs:configparser (Results 1 – 2 of 2) sorted by relevance
33 from rh.sixish import configparser44 class RawConfigParser(configparser.RawConfigParser):67 return configparser.RawConfigParser.options(self, section)68 except configparser.NoSectionError:77 return configparser.RawConfigParser.get(self, section, option)78 except (configparser.NoSectionError, configparser.NoOptionError):87 return configparser.RawConfigParser.items(self, section)88 except configparser.NoSectionError:127 except configparser.ParsingError as e:
38 import configparser40 import ConfigParser as configparser namespace