diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 03:05:52 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 03:05:52 (GMT) |
commit | 626d774df6752f3f8b12c99567d70c5539b2949b (patch) | |
tree | 105cfca353751e5e4c11d15da33a953bbb94d531 /Objects/tupleobject.c | |
parent | 7465ad2fc982ca15b7f1c568fb6044d2beac46e0 (diff) | |
download | cpython-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.c | 2 |
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: |