summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-08-07 16:21:51 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-08-07 16:21:51 (GMT)
commit3f19b10ca51ea84888f70405f75935c983271115 (patch)
tree755363cee3802ccbde255f494c79be6c679ebb6b /Objects
parent22c001bd295a3481687bd9224c71a0f6b275f8aa (diff)
downloadcpython-3f19b10ca51ea84888f70405f75935c983271115.zip
cpython-3f19b10ca51ea84888f70405f75935c983271115.tar.gz
cpython-3f19b10ca51ea84888f70405f75935c983271115.tar.bz2
Replace abort with Py_FatalError.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index e9251cc..70ff3ed 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1782,7 +1782,7 @@ none_dealloc(PyObject* ignore)
/* This should never get called, but we also don't want to SEGV if
* we accidently decref None out of existance.
*/
- abort();
+ Py_FatalError("deallocating None");
}