PyUnicode_Substring method

Pointer<PyObject> PyUnicode_Substring(
  1. Pointer<PyObject> str,
  2. int start,
  3. int end
)

Implementation

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