Lines Matching refs:dict
461 def __init__(self, master, title, dict=None):
464 if dict:
465 height = 20*len(dict) # XXX 20 == observed height of Entry widget
486 self.load_dict(dict)
488 dict = -1
490 def load_dict(self, dict, force=0, rpc_client=None):
491 if dict is self.dict and not force:
497 self.dict = None
498 if not dict:
502 #names = sorted(dict)
509 # There is also an obscure bug in sorted(dict) where the
510 # interpreter gets into a loop requesting non-existing dict[0],
511 # dict[1], dict[2], etc from the debugger_r.DictProxy.
513 keys_list = dict.keys()
518 value = dict[name]
530 self.dict = dict