From: Thomas Wouters Date: Wed, 11 Oct 2000 23:26:11 +0000 (+0000) Subject: Do a better job at staying on-screen :P (Sorry, it's late here.) I'm X-Git-Tag: v2.0~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Python/ceval.c b/Python/ceval.c index ce4b67a7b5be..a1c8190c752c 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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;