diff options
author | Thomas Wouters <thomas@python.org> | 2000-10-11 23:26:11 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-10-11 23:26:11 (GMT) |
commit | 0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d (patch) | |
tree | 608de60950f957e471530a814ca881842fabaeb2 /Python/ceval.c | |
parent | 8fb62a2e9a9c61c41560d5edb318ac1070dadb16 (diff) | |
download | cpython-0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d.zip cpython-0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d.tar.gz cpython-0be483fd4d0b3fd9bf531e6ea56a73a5cd7f680d.tar.bz2 |
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.
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index ce4b67a..a1c8190 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; |