(o: *mut PyObject)
| 191 | |
| 192 | #[inline] |
| 193 | pub unsafe fn PySequence_Length(o: *mut PyObject) -> Py_ssize_t { |
| 194 | PySequence_Size(o) |
| 195 | } |
| 196 | |
| 197 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 198 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected