summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-01-24 16:17:18 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-01-24 16:17:18 (GMT)
commita03827059021ee28a848b11ef2a857ef72b80194 (patch)
tree2758b77b50b73b7f9e1c520ce7d6f7cc3fedff06 /Python/pythonrun.c
parent9363dca3f818fa046bdef5d8dbd73f2cbde42fb0 (diff)
downloadcpython-a03827059021ee28a848b11ef2a857ef72b80194.zip
cpython-a03827059021ee28a848b11ef2a857ef72b80194.tar.gz
cpython-a03827059021ee28a848b11ef2a857ef72b80194.tar.bz2
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 3aa63e9..fa72fe8 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);