(op: *mut PyObject)
| 42 | |
| 43 | #[inline(always)] |
| 44 | pub unsafe fn PyString_AS_STRING(op: *mut PyObject) -> *mut c_char { |
| 45 | (*(op as *mut PyStringObject)).ob_sval.as_mut_ptr() |
| 46 | } |
| 47 | |
| 48 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 49 | extern "C" { |
no outgoing calls
no test coverage detected