Lines Matching refs:list
64 return list(self._list.items())
69 def _remove_dupes(self, list): argument
71 for key in list:
73 return list(tmpdict.keys())
82 for n,v in list(defaults.items()):
108 return list(zip(self._keylist, self._valuelist))
111 return list(zip(self._keylist,self._valuelist))
131 list, list1 = [] ,[]
132 list.append("a")
133 list.append("b")
134 list.append("c")
142 if "a" in list:
145 a = PseudoSet(list)
176 print("keys="+str(list(d.keys())))