Home | History | Annotate | Download | only in style

Lines Matching refs:__ne__

31 # On Testing __eq__() and __ne__():
34 # assertNotEquals() to test __eq__() or __ne__(). We do this to be
40 # negation of __eq__() or __ne__(), which are not necessarily
47 # also define __ne__() so that the operators will behave as
50 # (from http://docs.python.org/reference/datamodel.html#object.__ne__ )
110 # __eq__() and __ne__().
115 """Test __ne__ inequality function."""
116 # By default, __ne__ always returns true on different objects.
118 # code defines __ne__.
121 # __eq__() and __ne__().
122 self.assertFalse(CategoryFilter().__ne__(CategoryFilter()))
180 # __eq__() and __ne__().
199 """Test __ne__ method."""
200 # By default, __ne__ always returns true on different objects.
202 # code defines __ne__.
205 # __eq__() and __ne__().
206 self.assertFalse(FilterConfiguration().__ne__(FilterConfiguration()))