py_pusheval method
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,
);
}