From 25ecb9d65dfcf37d51713bdea69faa0878153133 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 17 Mar 2023 15:16:58 +0800 Subject: [PATCH] Update ceval.h --- src/ceval.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ceval.h b/src/ceval.h index b933c893..187d9a7e 100644 --- a/src/ceval.h +++ b/src/ceval.h @@ -8,9 +8,6 @@ namespace pkpy{ PyVar VM::run_frame(Frame* frame){ while(frame->has_next_bytecode()){ const Bytecode& byte = frame->next_bytecode(); - // if(true || frame->_module != builtins){ - // printf("%d: %s (%d) %s\n", frame->_ip, OP_NAMES[byte.op], byte.arg, frame->stack_info().c_str()); - // } switch (byte.op) { case OP_NO_OP: continue;