Lines Matching defs:set
31 When `delimiters` is given, it will be used as the set of substrings
34 When `comment_prefixes` is given, it will be used as the set of
38 When `inline_comment_prefixes` is given, it will be used as the set of
133 set(section, option, value)
754 elements_added = set()
770 self.set(section, key, value)
907 def set(self, section, option, value=None):
1029 elements_added = set()
1116 # match if it would set optval to None
1124 # a non-fatal parsing error occurred. set up the
1194 For compatibility reasons this method is not used in classic set()
1196 access and in ConfigParser.set().
1216 def set(self, section, option, value=None):
1217 """Set an option. Extends RawConfigParser.set by validating type and
1220 super().set(section, option, value)
1278 return self._parser.set(self._name, key, value)