PySequence_In method

int PySequence_In(
  1. Pointer<PyObject> o,
  2. Pointer<PyObject> value
)

Implementation

int PySequence_In(
  ffi.Pointer<PyObject> o,
  ffi.Pointer<PyObject> value,
) {
  return _PySequence_In(
    o,
    value,
  );
}