py_formatexc method

Pointer<Char> py_formatexc()

Format the current exception and return a null-terminated string. The result should be freed by the caller. The exception will be set as handled.

Implementation

ffi.Pointer<ffi.Char> py_formatexc() {
  return _py_formatexc();
}