py_raise method

bool py_raise(
  1. py_Ref arg0
)

Raise an expection object. Always return false.

Implementation

bool py_raise(
  py_Ref arg0,
) {
  return _py_raise(
    arg0,
  );
}