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

Class NoOptionError

Lib/configparser.py:251–259  ·  view source on GitHub ↗

A requested option was not found.

Source from the content-addressed store, hash-verified

249
250
251class NoOptionError(Error):
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 1

getMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…