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;