diff options
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 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"); } |