PyUnicode_Count method

int PyUnicode_Count(
  1. Pointer<PyObject> str,
  2. Pointer<PyObject> substr,
  3. int start,
  4. int end,
)

Implementation

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