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

Method getint

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

Source from the content-addressed store, hash-verified

863
864 # getint, getfloat and getboolean provided directly for backwards compat
865 def getint(self, section, option, *, raw=False, vars=None,
866 fallback=_UNSET, **kwargs):
867 return self._get_conv(section, option, int, raw=raw, vars=vars,
868 fallback=fallback, **kwargs)
869
870 def getfloat(self, section, option, *, raw=False, vars=None,
871 fallback=_UNSET, **kwargs):

Callers

nothing calls this directly

Calls 1

_get_convMethod · 0.95

Tested by

no test coverage detected