(self)
| 380 | x in range(100)]) |
| 381 | |
| 382 | def test_unsafe_float_compare(self): |
| 383 | check_against_PyObject_RichCompareBool(self, [float(x) for |
| 384 | x in range(100)]) |
| 385 | |
| 386 | def test_unsafe_tuple_compare(self): |
| 387 | # This test was suggested by Tim Peters. It verifies that the tuple |
nothing calls this directly
no test coverage detected