From f4cf76dd5eabd8af5d2a866da1f75fa745aa6f29 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 24 Apr 2003 05:45:23 +0000 Subject: Revert the previous enhancement to the bytecode optimizer. The additional code complexity and new NOP opcode were not worth it. --- Python/ceval.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 7f8f65493b..3ea1bdc966 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -873,9 +873,6 @@ eval_frame(PyFrameObject *f) /* case STOP_CODE: this is an error! */ - case NOP: - goto fast_next_opcode; - case LOAD_FAST: x = GETLOCAL(oparg); if (x != NULL) { -- cgit v1.2.1