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

Method _options

Lib/configparser.py:1327–1331  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1325 return self._options().__iter__()
1326
1327 def _options(self):
1328 if self._name != self._parser.default_section:
1329 return self._parser.options(self._name)
1330 else:
1331 return self._parser.defaults()
1332
1333 @property
1334 def parser(self):

Callers 2

__len__Method · 0.95
__iter__Method · 0.95

Calls 2

defaultsMethod · 0.80
optionsMethod · 0.45

Tested by

no test coverage detected