Lines Matching refs:did
132 did = id(dict)
133 dicttable[did] = dict
134 return did
139 did = id(dict)
140 dicttable[did] = dict
141 return did
162 def dict_keys(self, did): argument
163 dict = dicttable[did]
166 def dict_item(self, did, key): argument
167 dict = dicttable[did]
222 did = self._conn.remotecall(self._oid, "frame_globals",
224 return self._get_dict_proxy(did)
227 did = self._conn.remotecall(self._oid, "frame_locals",
229 return self._get_dict_proxy(did)
231 def _get_dict_proxy(self, did): argument
232 if did in self._dictcache:
233 return self._dictcache[did]
234 dp = DictProxy(self._conn, self._oid, did)
235 self._dictcache[did] = dp
257 def __init__(self, conn, oid, did): argument
260 self._did = did