Lines Matching refs:mydict
311 value = mydict[key]
313 mydict[key] = getvalue(key)
314 value = mydict[key]
319 if key in mydict:
320 value = mydict[key]
322 value = mydict[key] = getvalue(key)
327 mydict.setdefault(key, getvalue(key))``.
563 mydict = {[1, 2]: '12'}
564 print mydict[[1, 2]]
638 for key in sorted(mydict):
639 ... # do whatever with mydict[key]...
771 function(args).mydict[index][index].a = 21
772 function(args).mydict[index][index].b = 42
773 function(args).mydict[index][index].c = 63
777 ref = function(args).mydict[index][index]