MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/configparser.py:353–362  ·  view source on GitHub ↗
(self, filename, lineno, line)

Source from the content-addressed store, hash-verified

351class MultilineContinuationError(ParsingError):
352 """Raised when a key without value is followed by continuation line"""
353 def __init__(self, filename, lineno, line):
354 Error.__init__(
355 self,
356 "Key without value continued with an indented line.\n"
357 "file: %r, line: %d\n%r"
358 %(filename, lineno, line))
359 self.source = filename
360 self.lineno = lineno
361 self.line = line
362 self.args = (filename, lineno, line)
363
364
365class UnnamedSectionDisabledError(Error):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected