summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorMoshe Zadka <moshez@math.huji.ac.il>2000-08-04 15:36:13 (GMT)
committerMoshe Zadka <moshez@math.huji.ac.il>2000-08-04 15:36:13 (GMT)
commitcf703f04ad406d905d280a364048d56aa9d21315 (patch)
treef25e872aef54e6756c573e2e2fbdc65496b98d5d /Objects/object.c
parent92a69138b3f607384a22e291b4d0af3b1bd1b237 (diff)
downloadcpython-cf703f04ad406d905d280a364048d56aa9d21315.zip
cpython-cf703f04ad406d905d280a364048d56aa9d21315.tar.gz
cpython-cf703f04ad406d905d280a364048d56aa9d21315.tar.bz2
Removing warnings found by gcc -Wall
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 72c3013..a7df526 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1123,6 +1123,10 @@ _PyTrash_deposit_object(PyObject *op)
typecode = Py_TRASHCAN_FRAME;
else if (PyTraceBack_Check(op))
typecode = Py_TRASHCAN_TRACEBACK;
+ else /* We have a bug here -- those are the only types in GC */ {
+ Py_FatalError("Type not supported in GC -- internal bug");
+ return; /* pacify compiler -- execution never here */
+ }
op->ob_refcnt = typecode;
op->ob_type = (PyTypeObject*)_PyTrash_delete_later;