mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
PyObject_GC_Del can now be used as a function designator.
This commit is contained in:
parent
7465ad2fc9
commit
626d774df6
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue