PyCFunction_NewEx method

Pointer<PyObject> PyCFunction_NewEx(
  1. Pointer<PyMethodDef> arg0,
  2. Pointer<PyObject> arg1,
  3. Pointer<PyObject> arg2
)

Implementation

ffi.Pointer<PyObject> PyCFunction_NewEx(
  ffi.Pointer<PyMethodDef> arg0,
  ffi.Pointer<PyObject> arg1,
  ffi.Pointer<PyObject> arg2,
) {
  return _PyCFunction_NewEx(
    arg0,
    arg1,
    arg2,
  );
}