summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-01-24 16:17:18 +0000
committerJack Jansen <jack.jansen@cwi.nl>2003-01-24 16:17:18 +0000
commitbd6c3916d56ddc1dfa39dc8f4e107ffbb489968d (patch)
tree1b8a408d7c4f1ab80787a8169616346b618b3b05 /Python/pythonrun.c
parent342722e8cc985da6b079107dd4b48fd9c52f0a01 (diff)
downloadcpython-bd6c3916d56ddc1dfa39dc8f4e107ffbb489968d.tar.gz
MacPython-OS9 has had an abort() function for quite a while now, so there's no reason to stall in an endless loop, just call abort() on a fatal error.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 3aa63e9432..fa72fe8813 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1323,9 +1323,6 @@ void
Py_FatalError(const char *msg)
{
fprintf(stderr, "Fatal Python error: %s\n", msg);
-#ifdef macintosh
- for (;;);
-#endif
#ifdef MS_WINDOWS
OutputDebugString("Fatal Python error: ");
OutputDebugString(msg);