PyFunction_SetAnnotations method

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

Implementation

int PyFunction_SetAnnotations(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
) {
  return _PyFunction_SetAnnotations(
    arg0,
    arg1,
  );
}