(x: *mut PyObject)
| 62 | #[cfg(all(not(Py_3_8), not(Py_LIMITED_API)))] |
| 63 | #[inline] |
| 64 | pub unsafe fn PyExceptionClass_Name(x: *mut PyObject) -> *const c_char { |
| 65 | (*(*x).ob_type).tp_name |
| 66 | } |
| 67 | |
| 68 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 69 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected