Home
last modified time | relevance | path

Searched refs:configparser (Results 1 – 2 of 2) sorted by relevance

/tools/repohooks/rh/
Dconfig.py33 from rh.sixish import configparser
44 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:
Dsixish.py38 import configparser
40 import ConfigParser as configparser namespace