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

Method getboolean

Lib/configparser.py:875–878  ·  view source on GitHub ↗
(self, section, option, *, raw=False, vars=None,
                   fallback=_UNSET, **kwargs)

Source from the content-addressed store, hash-verified

873 fallback=fallback, **kwargs)
874
875 def getboolean(self, section, option, *, raw=False, vars=None,
876 fallback=_UNSET, **kwargs):
877 return self._get_conv(section, option, self._convert_to_boolean,
878 raw=raw, vars=vars, fallback=fallback, **kwargs)
879
880 def items(self, section=_UNSET, raw=False, vars=None):
881 """Return a list of (name, value) tuples for each option in a section.

Callers

nothing calls this directly

Calls 1

_get_convMethod · 0.95

Tested by

no test coverage detected