(x: *mut PyObject)
| 56 | |
| 57 | #[inline] |
| 58 | pub unsafe fn PyExceptionInstance_Class(x: *mut PyObject) -> *mut PyObject { |
| 59 | (*x).ob_type as *mut PyObject |
| 60 | } |
| 61 | |
| 62 | #[cfg(all(not(Py_3_8), not(Py_LIMITED_API)))] |
| 63 | #[inline] |
no outgoing calls
no test coverage detected