Raised when attempting to write data that the parser would read back differently. ex: writing a key which begins with the section header pattern would read back as a new section
| 375 | return "<UNNAMED_SECTION>" |
| 376 | |
| 377 | class InvalidWriteError(Error): |
| 378 | """Raised when attempting to write data that the parser would read back differently. |
| 379 | ex: writing a key which begins with the section header pattern would read back as a |
| 380 | new section """ |
| 381 | |
| 382 | def __init__(self, msg=''): |
| 383 | Error.__init__(self, msg) |
| 384 | |
| 385 | |
| 386 | UNNAMED_SECTION = _UnnamedSection() |
no outgoing calls
no test coverage detected
searching dependent graphs…