Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0be483f

Browse files
committed
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.
1 parent 8fb62a2 commit 0be483f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Python/ceval.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,8 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals,
775775
PUSH(x);
776776
continue;
777777
default:
778-
Py_FatalError("invalid argument to DUP_TOPX (bytecode corruption?)");
778+
Py_FatalError("invalid argument to DUP_TOPX"
779+
" (bytecode corruption?)");
779780
}
780781
break;
781782

0 commit comments

Comments
 (0)