Home | History | Annotate | Download | only in idlelib

Lines Matching refs:did

133         did = id(dict)
134 dicttable[did] = dict
135 return did
140 did = id(dict)
141 dicttable[did] = dict
142 return did
163 def dict_keys(self, did):
164 dict = dicttable[did]
167 def dict_item(self, did, key):
168 dict = dicttable[did]
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):
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):
261 self._did = did