Commit 626d774d authored by Neil Schemenauer's avatar Neil Schemenauer

PyObject_GC_Del can now be used as a function designator.

parent 7465ad2f
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment