PyCallIter_New method

Pointer<PyObject> PyCallIter_New(
  1. Pointer<PyObject> arg0,
  2. Pointer<PyObject> arg1
)

Implementation

ffi.Pointer<PyObject> PyCallIter_New(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
) {
  return _PyCallIter_New(
    arg0,
    arg1,
  );
}