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

Method __init__

Lib/configparser.py:254–259  ·  view source on GitHub ↗
(self, option, section)

Source from the content-addressed store, hash-verified

252 """A requested option was not found."""
253
254 def __init__(self, option, section):
255 Error.__init__(self, "No option %r in section: %r" %
256 (option, section))
257 self.option = option
258 self.section = section
259 self.args = (option, section)
260
261
262class InterpolationError(Error):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected