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