Create a new section in the configuration. Extends RawConfigParser.add_section by validating if the section name is a string.
(self, section)
| 1266 | super().set(section, option, value) |
| 1267 | |
| 1268 | def add_section(self, section): |
| 1269 | """Create a new section in the configuration. Extends |
| 1270 | RawConfigParser.add_section by validating if the section name is |
| 1271 | a string.""" |
| 1272 | self._validate_value_types(section=section) |
| 1273 | super().add_section(section) |
| 1274 | |
| 1275 | def _read_defaults(self, defaults): |
| 1276 | """Reads the defaults passed in the initializer, implicitly converting |