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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d;p=python 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 ce4b67a7b5..a1c8190c75 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;