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

Method pop

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

Source from the content-addressed store, hash-verified

346 return self.convert_with_key(key, value)
347
348 def pop(self, key, default=None):
349 value = dict.pop(self, key, default)
350 return self.convert_with_key(key, value, replace=False)
351
352class ConvertingList(list, ConvertingMixin):
353 """A converting list wrapper."""

Callers 10

_resolveFunction · 0.45
popMethod · 0.45
resolveMethod · 0.45
configure_customMethod · 0.45
configureMethod · 0.45
configure_formatterMethod · 0.45
configure_handlerMethod · 0.45
basicConfigFunction · 0.45
makePickleMethod · 0.45

Calls 1

convert_with_keyMethod · 0.80

Tested by

no test coverage detected