PyErr_WarnExplicit method

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

Implementation

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