(self)
| 143 | self.assertIsInstance(obj, Hashable) |
| 144 | |
| 145 | def test_not_hashable(self): |
| 146 | for obj in self.error_expected: |
| 147 | self.assertNotIsInstance(obj, Hashable) |
| 148 | |
| 149 | |
| 150 | # Issue #4701: Check that some builtin types are correctly hashable |
nothing calls this directly
no test coverage detected