PyContextVar_Set method

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

Implementation

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