From: Jack Jansen Date: Fri, 24 Jan 2003 16:17:18 +0000 (+0000) Subject: MacPython-OS9 has had an abort() function for quite a while now, so there's no reason... X-Git-Tag: v2.3c1~2348 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a03827059021ee28a848b11ef2a857ef72b80194;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 3aa63e9432d3..fa72fe8813f6 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);