PyErr_NewExceptionWithDoc method Null safety

Pointer<PyObject> PyErr_NewExceptionWithDoc (
  1. Pointer<Int8> name,
  2. Pointer<Int8> doc,
  3. Pointer<PyObject> base,
  4. Pointer<PyObject> dict
)

Implementation

ffi.Pointer<PyObject> PyErr_NewExceptionWithDoc(
  ffi.Pointer<ffi.Int8> name,
  ffi.Pointer<ffi.Int8> doc,
  ffi.Pointer<PyObject> base,
  ffi.Pointer<PyObject> dict,
) {
  return _PyErr_NewExceptionWithDoc(
    name,
    doc,
    base,
    dict,
  );
}