py_pusheval method

bool py_pusheval(
  1. Pointer<Char> expr,
  2. py_GlobalRef module
)

Evaluate an expression and push the result to the stack. This function is used for testing.

Implementation

bool py_pusheval(
  ffi.Pointer<ffi.Char> expr,
  py_GlobalRef module,
) {
  return _py_pusheval(
    expr,
    module,
  );
}