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