diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-24 16:17:18 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-24 16:17:18 +0000 |
commit | bd6c3916d56ddc1dfa39dc8f4e107ffbb489968d (patch) | |
tree | 1b8a408d7c4f1ab80787a8169616346b618b3b05 /Python/pythonrun.c | |
parent | 342722e8cc985da6b079107dd4b48fd9c52f0a01 (diff) | |
download | cpython-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.c | 3 |
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); |