(self)
| 372 | check_against_PyObject_RichCompareBool(self, L) |
| 373 | |
| 374 | def test_unsafe_latin_compare(self): |
| 375 | check_against_PyObject_RichCompareBool(self, [str(x) for |
| 376 | x in range(100)]) |
| 377 | |
| 378 | def test_unsafe_long_compare(self): |
| 379 | check_against_PyObject_RichCompareBool(self, [x for |
nothing calls this directly
no test coverage detected