summaryrefslogtreecommitdiffstats
path: root/Objects/tupleobject.c
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2002-04-12 03:05:52 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2002-04-12 03:05:52 (GMT)
commit626d774df6752f3f8b12c99567d70c5539b2949b (patch)
tree105cfca353751e5e4c11d15da33a953bbb94d531 /Objects/tupleobject.c
parent7465ad2fc982ca15b7f1c568fb6044d2beac46e0 (diff)
downloadcpython-626d774df6752f3f8b12c99567d70c5539b2949b.zip
cpython-626d774df6752f3f8b12c99567d70c5539b2949b.tar.gz
cpython-626d774df6752f3f8b12c99567d70c5539b2949b.tar.bz2
PyObject_GC_Del can now be used as a function designator.
Diffstat (limited to 'Objects/tupleobject.c')
-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: