PyErr_WarnExplicitObject method

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

Implementation

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