PyList_Insert method Null safety
Implementation
int PyList_Insert(
ffi.Pointer<PyObject> arg0,
int arg1,
ffi.Pointer<PyObject> arg2,
) {
return _PyList_Insert(
arg0,
arg1,
arg2,
);
}
int PyList_Insert(
ffi.Pointer<PyObject> arg0,
int arg1,
ffi.Pointer<PyObject> arg2,
) {
return _PyList_Insert(
arg0,
arg1,
arg2,
);
}