(self)
| 2252 | matching the section pattern""" |
| 2253 | |
| 2254 | def test_delimiter_in_key(self): |
| 2255 | cfg = configparser.ConfigParser(delimiters=('=')) |
| 2256 | cfg.add_section('section1') |
| 2257 | cfg.set('section1', 'a=b', 'c') |
| 2258 | output = io.StringIO() |
| 2259 | with self.assertRaises(configparser.InvalidWriteError): |
| 2260 | cfg.write(output) |
| 2261 | output.close() |
| 2262 | |
| 2263 | def test_section_bracket_in_key(self): |
| 2264 | cfg = configparser.ConfigParser() |
nothing calls this directly
no test coverage detected