Lines Matching refs:_list
26 _list = [] variable in PseudoSet
29 return str(self._list)
32 self._list = self._remove_dupes(newlist)
36 if self._list != None and other != None:
37 tmplist.extend(self._list)
45 if self._list != None and other != None:
46 tmplist.extend(self._list)
54 if other != None and self._list != None:
55 [tmplist.append(key) for key in self._list if key in other]
61 return self._list.__iter__()
64 return list(self._list.items())
67 return keys(self._list)