Skip to content

Commit

Permalink
gh-91632: Fix generic_alias_iterator to be finalized at exit. (GH-91727)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Apr 20, 2022
1 parent f92bcfe commit f571c26
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
@@ -0,0 +1 @@
Fix a minor memory leak at exit: release the memory of the :class:`generic_alias_iterator` type. Patch by Dong-hee Na.
6 changes: 4 additions & 2 deletions Objects/genericaliasobject.c
Expand Up @@ -683,7 +683,9 @@ ga_iter_clear(PyObject *self) {
return 0;
}

static PyTypeObject Py_GenericAliasIterType = {
// gh-91632: _Py_GenericAliasIterType is exported to be cleared
// in _PyTypes_FiniTypes.
PyTypeObject _Py_GenericAliasIterType = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
.tp_name = "generic_alias_iterator",
.tp_basicsize = sizeof(gaiterobject),
Expand All @@ -697,7 +699,7 @@ static PyTypeObject Py_GenericAliasIterType = {

static PyObject *
ga_iter(PyObject *self) {
gaiterobject *gi = PyObject_GC_New(gaiterobject, &Py_GenericAliasIterType);
gaiterobject *gi = PyObject_GC_New(gaiterobject, &_Py_GenericAliasIterType);
if (gi == NULL) {
return NULL;
}
Expand Down
2 changes: 2 additions & 0 deletions Objects/object.c
Expand Up @@ -1834,6 +1834,7 @@ _PyTypes_InitState(PyInterpreterState *interp)
#ifdef MS_WINDOWS
extern PyTypeObject PyHKEY_Type;
#endif
extern PyTypeObject _Py_GenericAliasIterType;

static PyTypeObject* static_types[] = {
// The two most important base types: must be initialized first and
Expand Down Expand Up @@ -1923,6 +1924,7 @@ static PyTypeObject* static_types[] = {
&_PyAsyncGenWrappedValue_Type,
&_PyContextTokenMissing_Type,
&_PyCoroWrapper_Type,
&_Py_GenericAliasIterType,
&_PyHamtItems_Type,
&_PyHamtKeys_Type,
&_PyHamtValues_Type,
Expand Down

0 comments on commit f571c26

Please sign in to comment.