PyErr_ResourceWarning method

int PyErr_ResourceWarning(
  1. Pointer<PyObject> source,
  2. int stack_level,
  3. Pointer<Char> format
)

Implementation

int PyErr_ResourceWarning(
  ffi.Pointer<PyObject> source,
  int stack_level,
  ffi.Pointer<ffi.Char> format,
) {
  return _PyErr_ResourceWarning(
    source,
    stack_level,
    format,
  );
}