PySequence_Repeat method

Pointer<PyObject> PySequence_Repeat(
  1. Pointer<PyObject> o,
  2. int count
)

Implementation

ffi.Pointer<PyObject> PySequence_Repeat(
  ffi.Pointer<PyObject> o,
  int count,
) {
  return _PySequence_Repeat(
    o,
    count,
  );
}