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

Method __init__

Lib/configparser.py:192–195  ·  view source on GitHub ↗
(self, section)

Source from the content-addressed store, hash-verified

190 """Raised when no section matches a requested option."""
191
192 def __init__(self, section):
193 Error.__init__(self, 'No section: %r' % (section,))
194 self.section = section
195 self.args = (section, )
196
197
198class DuplicateSectionError(Error):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected