MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PySequence_In

Function PySequence_In

python3-sys/src/objectabstract.rs:221–223  ·  view source on GitHub ↗
(o: *mut PyObject, value: *mut PyObject)

Source from the content-addressed store, hash-verified

219
220#[inline]
221pub 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"))]
226extern "C" {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected