(x: *mut PyObject)
| 51 | |
| 52 | #[inline] |
| 53 | pub unsafe fn PyExceptionInstance_Check(x: *mut PyObject) -> c_int { |
| 54 | PyType_FastSubclass((*x).ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS) |
| 55 | } |
| 56 | |
| 57 | #[inline] |
| 58 | pub unsafe fn PyExceptionInstance_Class(x: *mut PyObject) -> *mut PyObject { |
no test coverage detected