Set an option. Extends RawConfigParser.set by validating type and interpolation syntax on the value.
(self, section, option, value=None)
| 1260 | _DEFAULT_INTERPOLATION = BasicInterpolation() |
| 1261 | |
| 1262 | def set(self, section, option, value=None): |
| 1263 | """Set an option. Extends RawConfigParser.set by validating type and |
| 1264 | interpolation syntax on the value.""" |
| 1265 | self._validate_value_types(option=option, value=value) |
| 1266 | super().set(section, option, value) |
| 1267 | |
| 1268 | def add_section(self, section): |
| 1269 | """Create a new section in the configuration. Extends |