PyTuple_Pack method

Pointer<PyObject> PyTuple_Pack(
  1. int arg0
)

Implementation

ffi.Pointer<PyObject> PyTuple_Pack(
  int arg0,
) {
  return _PyTuple_Pack(
    arg0,
  );
}