PyErr_SetImportErrorSubclass method

Pointer<PyObject> PyErr_SetImportErrorSubclass(
  1. Pointer<PyObject> arg0,
  2. Pointer<PyObject> arg1,
  3. Pointer<PyObject> arg2,
  4. Pointer<PyObject> arg3,
)

Implementation

ffi.Pointer<PyObject> PyErr_SetImportErrorSubclass(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
  ffi.Pointer<PyObject> arg2,
  ffi.Pointer<PyObject> arg3,
) {
  return _PyErr_SetImportErrorSubclass(
    arg0,
    arg1,
    arg2,
    arg3,
  );
}