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

Method __getitem__

Lib/logging/config.py:340–342  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

338 """A converting dictionary wrapper."""
339
340 def __getitem__(self, key):
341 value = dict.__getitem__(self, key)
342 return self.convert_with_key(key, value)
343
344 def get(self, key, default=None):
345 value = dict.get(self, key, default)

Callers 2

__getitem__Method · 0.45
__getitem__Method · 0.45

Calls 1

convert_with_keyMethod · 0.80

Tested by

no test coverage detected