py_exception method

bool py_exception(
  1. int type,
  2. Pointer<Char> fmt
)

Raise an exception by type and message. Always return false.

Implementation

bool py_exception(
  int type,
  ffi.Pointer<ffi.Char> fmt,
) {
  return _py_exception(
    type,
    fmt,
  );
}