diff options
-rw-r--r-- | Python/compile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index ca8dd26..5549e9f 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -419,7 +419,8 @@ optimize_code(PyObject *code, PyObject* consts, PyObject *names) continue; SETARG(codestr, i, (j^1)); codestr[i+3] = NOP; - + break; + /* Replace LOAD_GLOBAL/LOAD_NAME None with LOAD_CONST None */ case LOAD_NAME: case LOAD_GLOBAL: |