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

Method _get_dict_proxy

Lib/idlelib/debugger_r.py:232–237  ·  view source on GitHub ↗
(self, did)

Source from the content-addressed store, hash-verified

230 return self._get_dict_proxy(did)
231
232 def _get_dict_proxy(self, did):
233 if did in self._dictcache:
234 return self._dictcache[did]
235 dp = DictProxy(self._conn, self._oid, did)
236 self._dictcache[did] = dp
237 return dp
238
239
240class CodeProxy:

Callers 2

_get_f_globalsMethod · 0.95
_get_f_localsMethod · 0.95

Calls 1

DictProxyClass · 0.70

Tested by

no test coverage detected