mirror of https://github.com/python/cpython
Do a better job at staying on-screen :P (Sorry, it's late here.) I'm
assuming here that the ANSI-C adjacent-string-concatenation technique is allowable, now that Python requires an ANSI C compiler.
This commit is contained in:
parent
8fb62a2e9a
commit
0be483fd4d
|
@ -775,7 +775,8 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals,
|
|||
PUSH(x);
|
||||
continue;
|
||||
default:
|
||||
Py_FatalError("invalid argument to DUP_TOPX (bytecode corruption?)");
|
||||
Py_FatalError("invalid argument to DUP_TOPX"
|
||||
" (bytecode corruption?)");
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue