diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index ca38c68..ce4b67a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -775,11 +775,7 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals, PUSH(x); continue; default: - fprintf(stderr, "Invalid argument to DUP_TOPX: %d!\n", oparg); - PyErr_SetString(PyExc_SystemError, - "invalid argument to DUP_TOPX"); - x = NULL; - break; + Py_FatalError("invalid argument to DUP_TOPX (bytecode corruption?)"); } break; |