py_tobool method

bool py_tobool(
  1. py_Ref arg0
)

Convert a bool object in python to bool.

Implementation

bool py_tobool(
  py_Ref arg0,
) {
  return _py_tobool(
    arg0,
  );
}