diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-08-07 16:21:51 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-08-07 16:21:51 +0000 |
commit | 3f19b10ca51ea84888f70405f75935c983271115 (patch) | |
tree | 755363cee3802ccbde255f494c79be6c679ebb6b /Objects/object.c | |
parent | 22c001bd295a3481687bd9224c71a0f6b275f8aa (diff) | |
download | cpython-git-3f19b10ca51ea84888f70405f75935c983271115.tar.gz |
Replace abort with Py_FatalError.
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index e9251cc22d..70ff3eda04 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"); } |