summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/tupleobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index ab792de..581ccf9 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -582,7 +582,7 @@ PyTypeObject PyTuple_Type = {
0, /* tp_init */
0, /* tp_alloc */
tuple_new, /* tp_new */
- _PyObject_GC_Del, /* tp_free */
+ PyObject_GC_Del, /* tp_free */
};
/* The following function breaks the notion that tuples are immutable: