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

Method get

Lib/logging/config.py:344–346  ·  view source on GitHub ↗
(self, key, default=None)

Source from the content-addressed store, hash-verified

342 return self.convert_with_key(key, value)
343
344 def get(self, key, default=None):
345 value = dict.get(self, key, default)
346 return self.convert_with_key(key, value)
347
348 def pop(self, key, default=None):
349 value = dict.pop(self, key, default)

Callers 15

_create_formattersFunction · 0.45
_install_handlersFunction · 0.45
convertMethod · 0.45
configureMethod · 0.45
configure_formatterMethod · 0.45
configure_filterMethod · 0.45
common_logger_configMethod · 0.45
configure_loggerMethod · 0.45
getLevelNameFunction · 0.45
__init__Method · 0.45
getHandlerByNameFunction · 0.45
processMethod · 0.45

Calls 1

convert_with_keyMethod · 0.80

Tested by

no test coverage detected