From 0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Wed, 11 Oct 2000 23:26:11 +0000 Subject: [PATCH] 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. --- Python/ceval.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index ce4b67a7b5b..a1c8190c752 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;