(o: *mut PyObject, value: *mut PyObject)
| 219 | |
| 220 | #[inline] |
| 221 | pub unsafe fn PySequence_In(o: *mut PyObject, value: *mut PyObject) -> c_int { |
| 222 | PySequence_Contains(o, value) |
| 223 | } |
| 224 | |
| 225 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 226 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected