PySlice_New method Null safety
Implementation
ffi.Pointer<PyObject> PySlice_New(
ffi.Pointer<PyObject> start,
ffi.Pointer<PyObject> stop,
ffi.Pointer<PyObject> step,
) {
return _PySlice_New(
start,
stop,
step,
);
}
ffi.Pointer<PyObject> PySlice_New(
ffi.Pointer<PyObject> start,
ffi.Pointer<PyObject> stop,
ffi.Pointer<PyObject> step,
) {
return _PySlice_New(
start,
stop,
step,
);
}