PyErr_WarnExplicitFormat method

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

Implementation

int PyErr_WarnExplicitFormat(
  ffi.Pointer<PyObject> category,
  ffi.Pointer<ffi.Char> filename,
  int lineno,
  ffi.Pointer<ffi.Char> module,
  ffi.Pointer<PyObject> registry,
  ffi.Pointer<ffi.Char> format,
) {
  return _PyErr_WarnExplicitFormat(
    category,
    filename,
    lineno,
    module,
    registry,
    format,
  );
}