mirror of https://github.com/python/cpython
PyObject_GC_Del can now be used as a function designator.
This commit is contained in:
parent
7465ad2fc9
commit
626d774df6
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue