PyUnicode_Join method

Pointer<PyObject> PyUnicode_Join(
  1. Pointer<PyObject> separator,
  2. Pointer<PyObject> seq
)

Implementation

ffi.Pointer<PyObject> PyUnicode_Join(
  ffi.Pointer<PyObject> separator,
  ffi.Pointer<PyObject> seq,
) {
  return _PyUnicode_Join(
    separator,
    seq,
  );
}