[Python-checkins] python/dist/src/Objects object.c,2.187,2.188
loewis@users.sourceforge.net
loewis@users.sourceforge.net
Wed, 07 Aug 2002 09:21:53 -0700
Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv23966/Objects
Modified Files:
object.c
Log Message:
Replace abort with Py_FatalError.
Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.187
retrieving revision 2.188
diff -C2 -d -r2.187 -r2.188
*** object.c 29 Jul 2002 13:42:08 -0000 2.187
--- object.c 7 Aug 2002 16:21:51 -0000 2.188
***************
*** 1783,1787 ****
* we accidently decref None out of existance.
*/
! abort();
}
--- 1783,1787 ----
* we accidently decref None out of existance.
*/
! Py_FatalError("deallocating None");
}