Lines Matching defs:options
28 objects for the list of sections, for the options within a section, and
49 When `allow_no_value` is True (default: False), options without
80 options(section)
81 Return list of configuration options for the named section.
111 getint(section, options, raw=False, vars=None, fallback=_UNSET)
114 getfloat(section, options, raw=False, vars=None, fallback=_UNSET)
117 getboolean(section, options, raw=False, vars=None, fallback=_UNSET)
128 Remove the given file section and all its options.
573 # Regular expressions for parsing section headers and options
600 # Compiled regular expression for matching options with typical separators
602 # Compiled regular expression for matching options with optional values
685 def options(self, section):
1016 a name in square brackets (`[]`), plus key/value options, indicated by
1138 for section, options in all_sections:
1139 for name, val in options.items():
1142 options[name] = self._interpolation.before_read(self,
1189 options is None, so we need to check if the value is a
1191 - we do not allow valueless options, or
1192 - we allow valueless options but the value is not None
1296 return self._parser.options(self._name)