mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)
This commit is contained in:
parent
c0295dba25
commit
3caf4de6f0
1 changed files with 1 additions and 0 deletions
|
|
@ -77,6 +77,7 @@ structseq_dealloc(PyStructSequence *obj)
|
|||
{
|
||||
Py_ssize_t i, size;
|
||||
PyTypeObject *tp;
|
||||
PyObject_GC_UnTrack(obj);
|
||||
|
||||
tp = (PyTypeObject *) Py_TYPE(obj);
|
||||
size = REAL_SIZE(obj);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue