PyUnicode_Substring method Null safety
Implementation
ffi.Pointer<PyObject> PyUnicode_Substring(
ffi.Pointer<PyObject> str,
int start,
int end,
) {
return _PyUnicode_Substring(
str,
start,
end,
);
}
ffi.Pointer<PyObject> PyUnicode_Substring(
ffi.Pointer<PyObject> str,
int start,
int end,
) {
return _PyUnicode_Substring(
str,
start,
end,
);
}