PyBytes_Join method

Pointer<PyObject> PyBytes_Join(
  1. Pointer<PyObject> sep,
  2. Pointer<PyObject> x
)

Implementation

ffi.Pointer<PyObject> PyBytes_Join(
  ffi.Pointer<PyObject> sep,
  ffi.Pointer<PyObject> x,
) {
  return _PyBytes_Join(
    sep,
    x,
  );
}