From: Guido van Rossum Date: Thu, 29 Sep 1994 09:38:33 +0000 (+0000) Subject: * Python/pythonrun.c: add string "Python" to fatal error message X-Git-Tag: v1.1~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83dd6c319e8c353b185038064e57282d8e396107;p=thirdparty%2FPython%2Fcpython.git * Python/pythonrun.c: add string "Python" to fatal error message --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 978e4b866bdf..712a396e1c08 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -513,7 +513,7 @@ void fatal(msg) char *msg; { - fprintf(stderr, "Fatal error: %s\n", msg); + fprintf(stderr, "Fatal Python error: %s\n", msg); abort(); }