diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-24 16:17:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-24 16:17:18 (GMT) |
commit | a03827059021ee28a848b11ef2a857ef72b80194 (patch) | |
tree | 2758b77b50b73b7f9e1c520ce7d6f7cc3fedff06 /Python/pythonrun.c | |
parent | 9363dca3f818fa046bdef5d8dbd73f2cbde42fb0 (diff) | |
download | cpython-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.c | 3 |
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); |