PyContextVar_Set method Null safety

Pointer<PyObject> PyContextVar_Set (
  1. Pointer<PyObject> var_1,
  2. Pointer<PyObject> value
)

Implementation

ffi.Pointer<PyObject> PyContextVar_Set(
  ffi.Pointer<PyObject> var_1,
  ffi.Pointer<PyObject> value,
) {
  return _PyContextVar_Set(
    var_1,
    value,
  );
}