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

Method _get_f_globals

Lib/idlelib/debugger_r.py:222–225  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

220 return CodeProxy(self._conn, self._oid, cid)
221
222 def _get_f_globals(self):
223 did = self._conn.remotecall(self._oid, "frame_globals",
224 (self._fid,), {})
225 return self._get_dict_proxy(did)
226
227 def _get_f_locals(self):
228 did = self._conn.remotecall(self._oid, "frame_locals",

Callers 1

__getattr__Method · 0.95

Calls 2

_get_dict_proxyMethod · 0.95
remotecallMethod · 0.80

Tested by

no test coverage detected