PyUnicode_RSplit method

Pointer<PyObject> PyUnicode_RSplit(
  1. Pointer<PyObject> s,
  2. Pointer<PyObject> sep,
  3. int maxsplit
)

Implementation

ffi.Pointer<PyObject> PyUnicode_RSplit(
  ffi.Pointer<PyObject> s,
  ffi.Pointer<PyObject> sep,
  int maxsplit,
) {
  return _PyUnicode_RSplit(
    s,
    sep,
    maxsplit,
  );
}