(o: *mut PyObject)
| 49 | |
| 50 | #[inline] |
| 51 | pub unsafe fn PyObject_Length(o: *mut PyObject) -> Py_ssize_t { |
| 52 | PyObject_Size(o) |
| 53 | } |
| 54 | |
| 55 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 56 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected