py_clearexc method

void py_clearexc(
  1. py_StackRef p0
)

Clear the current exception. @param p0 the unwinding point. Use NULL if not needed.

Implementation

void py_clearexc(
  py_StackRef p0,
) {
  return _py_clearexc(
    p0,
  );
}