PyErr_NewException method Null safety
Implementation
ffi.Pointer<PyObject> PyErr_NewException(
ffi.Pointer<ffi.Int8> name,
ffi.Pointer<PyObject> base,
ffi.Pointer<PyObject> dict,
) {
return _PyErr_NewException(
name,
base,
dict,
);
}