(self)
| 376 | x in range(100)]) |
| 377 | |
| 378 | def test_unsafe_long_compare(self): |
| 379 | check_against_PyObject_RichCompareBool(self, [x for |
| 380 | x in range(100)]) |
| 381 | |
| 382 | def test_unsafe_float_compare(self): |
| 383 | check_against_PyObject_RichCompareBool(self, [float(x) for |
nothing calls this directly
no test coverage detected