Compare instances of type 'object'.
(self)
| 333 | b <= a |
| 334 | |
| 335 | def test_objects(self): |
| 336 | """Compare instances of type 'object'.""" |
| 337 | a = object() |
| 338 | b = object() |
| 339 | self.assert_equality_only(a, a, True) |
| 340 | self.assert_equality_only(a, b, False) |
| 341 | |
| 342 | def test_comp_classes_same(self): |
| 343 | """Compare same-class instances with comparison methods.""" |
nothing calls this directly
no test coverage detected