[Python-checkins] python/dist/src/Python pythonrun.c,2.175,2.176

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 24 Jan 2003 08:17:22 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv14502

Modified Files:
	pythonrun.c 
Log Message:
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.

Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.175
retrieving revision 2.176
diff -C2 -d -r2.175 -r2.176
*** pythonrun.c	22 Jan 2003 09:00:38 -0000	2.175
--- pythonrun.c	24 Jan 2003 16:17:18 -0000	2.176
***************
*** 1324,1330 ****
  {
  	fprintf(stderr, "Fatal Python error: %s\n", msg);
- #ifdef macintosh
- 	for (;;);
- #endif
  #ifdef MS_WINDOWS
  	OutputDebugString("Fatal Python error: ");
--- 1324,1327 ----