Lines Matching refs:get
68 converter gets its corresponding get*() method on the parser object and
103 get(section, option, raw=False, vars=None, fallback=_UNSET)
112 Like get(), but convert value to an integer.
115 Like get(), but convert value to a float.
118 Like get(), but convert value to a boolean (currently case
409 rawval = parser.get(section, option, raw=True, fallback=rest)
470 rawval = parser.get(section, option, raw=True, fallback=rest)
502 v = parser.get(sect, opt, raw=True)
781 def get(self, section, option, *, raw=False, vars=None, fallback=_UNSET):
819 return conv(self.get(section, option, **kwargs))
1027 section names. Please note that comments get stripped off when reading configuration files.
1264 key = 'get' + conv
1265 getter = functools.partial(self.get, _impl=getattr(parser, key))
1274 return self._parser.get(self._name, key)
1310 def get(self, option, fallback=None, *, raw=False, vars=None,
1321 _impl = self._parser.get
1327 """Enables reuse of get*() methods between the parser and section proxies.
1334 GETTERCRE = re.compile(r"^get(?P<name>.+)$")
1350 k = 'get' + key
1354 if k == 'get':
1361 getter = functools.partial(proxy.get, _impl=func)
1366 k = 'get' + (key or None)