Lines Matching refs:section
52 def options(self, section, default=_UNSET): argument
60 return configparser.RawConfigParser.options(self, section)
66 def get(self, section, option, default=_UNSET): argument
69 return configparser.RawConfigParser.get(self, section, option)
75 def items(self, section=_UNSET, default=_UNSET): argument
77 if section is _UNSET:
84 return configparser.RawConfigParser.items(self, section)
93 for section, settings in dictionary.items():
95 if not self.has_section(section):
96 self.add_section(section)
97 self.set(section, option, value)