Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a47f44 commit e12b696Copy full SHA for e12b696
1 file changed
Lib/configparser.py
@@ -376,9 +376,9 @@ def __repr__(self):
376
return "<UNNAMED_SECTION>"
377
378
class InvalidWriteError(Error):
379
- """Raised when attempting to write data that would cause file .ini corruption.
380
- ex: writing a key which begins with the section header pattern would
381
- read back as a new section """
+ """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 """
382
383
def __init__(self, msg=''):
384
Error.__init__(self, msg)
0 commit comments