Unverified Kaydet (Commit) 3caf4de6 authored tarafından Pablo Galindo's avatar Pablo Galindo Kaydeden (comit) GitHub

Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)

üst c0295dba
...@@ -77,6 +77,7 @@ structseq_dealloc(PyStructSequence *obj) ...@@ -77,6 +77,7 @@ structseq_dealloc(PyStructSequence *obj)
{ {
Py_ssize_t i, size; Py_ssize_t i, size;
PyTypeObject *tp; PyTypeObject *tp;
PyObject_GC_UnTrack(obj);
tp = (PyTypeObject *) Py_TYPE(obj); tp = (PyTypeObject *) Py_TYPE(obj);
size = REAL_SIZE(obj); size = REAL_SIZE(obj);
......
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