Lines Matching full:did
129 did = id(gdict)
130 dicttable[did] = gdict
131 return did
136 did = id(ldict)
137 dicttable[did] = ldict
138 return did
159 def dict_keys(self, did): argument
161 ## return dicttable[did].keys()
166 def dict_keys_list(self, did): argument
167 return list(dicttable[did].keys())
169 def dict_item(self, did, key): argument
170 value = dicttable[did][key]
223 did = self._conn.remotecall(self._oid, "frame_globals",
225 return self._get_dict_proxy(did)
228 did = self._conn.remotecall(self._oid, "frame_locals",
230 return self._get_dict_proxy(did)
232 def _get_dict_proxy(self, did): argument
233 if did in self._dictcache:
234 return self._dictcache[did]
235 dp = DictProxy(self._conn, self._oid, did)
236 self._dictcache[did] = dp
258 def __init__(self, conn, oid, did): argument
261 self._did = did