Lines Matching refs:did
129 did = id(dict)
130 dicttable[did] = dict
131 return did
136 did = id(dict)
137 dicttable[did] = dict
138 return did
159 def dict_keys(self, did): argument
166 def dict_keys_list(self, did): argument
167 dict = dicttable[did]
170 def dict_item(self, did, key): argument
171 dict = dicttable[did]
226 did = self._conn.remotecall(self._oid, "frame_globals",
228 return self._get_dict_proxy(did)
231 did = self._conn.remotecall(self._oid, "frame_locals",
233 return self._get_dict_proxy(did)
235 def _get_dict_proxy(self, did): argument
236 if did in self._dictcache:
237 return self._dictcache[did]
238 dp = DictProxy(self._conn, self._oid, did)
239 self._dictcache[did] = dp
261 def __init__(self, conn, oid, did): argument
264 self._did = did