PyErr_WarnExplicit method Null safety

int PyErr_WarnExplicit (
  1. Pointer<PyObject> category,
  2. Pointer<Int8> message,
  3. Pointer<Int8> filename,
  4. int lineno,
  5. Pointer<Int8> module,
  6. Pointer<PyObject> registry
)

Implementation

int PyErr_WarnExplicit(
  ffi.Pointer<PyObject> category,
  ffi.Pointer<ffi.Int8> message,
  ffi.Pointer<ffi.Int8> filename,
  int lineno,
  ffi.Pointer<ffi.Int8> module,
  ffi.Pointer<PyObject> registry,
) {
  return _PyErr_WarnExplicit(
    category,
    message,
    filename,
    lineno,
    module,
    registry,
  );
}