(op: *mut PyObject)
| 26 | |
| 27 | #[inline(always)] |
| 28 | pub unsafe fn PyString_Check(op: *mut PyObject) -> c_int { |
| 29 | PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_STRING_SUBCLASS) |
| 30 | } |
| 31 | |
| 32 | #[inline(always)] |
| 33 | pub unsafe fn PyString_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected