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

Method __init__

Lib/configparser.py:265–269  ·  view source on GitHub ↗
(self, option, section, msg)

Source from the content-addressed store, hash-verified

263 """Base class for interpolation-related exceptions."""
264
265 def __init__(self, option, section, msg):
266 Error.__init__(self, msg)
267 self.option = option
268 self.section = section
269 self.args = (option, section, msg)
270
271
272class InterpolationMissingOptionError(InterpolationError):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected