PyCapsule_SetContext method

int PyCapsule_SetContext(
  1. Pointer<PyObject> capsule,
  2. Pointer<Void> context
)

Implementation

int PyCapsule_SetContext(
  ffi.Pointer<PyObject> capsule,
  ffi.Pointer<ffi.Void> context,
) {
  return _PyCapsule_SetContext(
    capsule,
    context,
  );
}