Searched refs:other (Results 1 – 1 of 1) sorted by relevance
173 def __ne__(self, other): argument174 return not self.__eq__(other)176 def __eq__(self, other): argument177 return (isinstance(other, self.__class__) and178 self._name == other._name and179 self._fieldnames == other._fieldnames and180 self._values == other._values)