PyUnicode_Replace method

Pointer<PyObject> PyUnicode_Replace(
  1. Pointer<PyObject> str,
  2. Pointer<PyObject> substr,
  3. Pointer<PyObject> replstr,
  4. int maxcount,
)

Implementation

ffi.Pointer<PyObject> PyUnicode_Replace(
  ffi.Pointer<PyObject> str,
  ffi.Pointer<PyObject> substr,
  ffi.Pointer<PyObject> replstr,
  int maxcount,
) {
  return _PyUnicode_Replace(
    str,
    substr,
    replstr,
    maxcount,
  );
}