(op: *mut PyObject)
| 12 | |
| 13 | #[inline(always)] |
| 14 | pub unsafe fn PyList_Check(op: *mut PyObject) -> c_int { |
| 15 | PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS) |
| 16 | } |
| 17 | |
| 18 | #[inline(always)] |
| 19 | pub unsafe fn PyList_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected