PyErr_Format method

Pointer<PyObject> PyErr_Format(
  1. Pointer<PyObject> exception,
  2. Pointer<Char> format
)

Implementation

ffi.Pointer<PyObject> PyErr_Format(
  ffi.Pointer<PyObject> exception,
  ffi.Pointer<ffi.Char> format,
) {
  return _PyErr_Format(
    exception,
    format,
  );
}