]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
* Python/pythonrun.c: add string "Python" to fatal error message
authorGuido van Rossum <guido@python.org>
Thu, 29 Sep 1994 09:38:33 +0000 (09:38 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 29 Sep 1994 09:38:33 +0000 (09:38 +0000)
Python/pythonrun.c

index 978e4b866bdfb3658ead96bceb487e18cc025e66..712a396e1c0892dfefa8c2224260ec4e97b0ae9a 100644 (file)
@@ -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();
 }