(op: *mut PyObject)
| 37 | |
| 38 | #[inline(always)] |
| 39 | pub unsafe fn PyUnicode_Check(op: *mut PyObject) -> c_int { |
| 40 | PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS) |
| 41 | } |
| 42 | |
| 43 | #[inline(always)] |
| 44 | pub unsafe fn PyUnicode_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected