From 3caca62f2cbe4967e69204b992f3ca7494cda149 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 9 Aug 2024 11:46:10 +0800 Subject: [PATCH] ... --- src/interpreter/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/ceval.c b/src/interpreter/ceval.c index 5835616a..b5dbcb8d 100644 --- a/src/interpreter/ceval.c +++ b/src/interpreter/ceval.c @@ -1027,7 +1027,7 @@ FrameResult VM__run_top_frame(VM* self) { py_TValue* tmp = c11__at(py_TValue, &frame->co->consts, byte.arg); const char* string = py_tostr(tmp); // TODO: optimize this - if(!py_exec(string, "", EVAL_MODE, frame->module)) goto __ERROR; + if(!py_exec(string, "", EVAL_MODE, frame->module)) goto __ERROR; PUSH(py_retval()); DISPATCH(); }