8000 gh-91632: Fix generic_alias_iterator to be finalized at exit. by corona10 · Pull Request #91727 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-91632: Fix generic_alias_iterator to be finalized at exit. #91727

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 20, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix comment style
  • Loading branch information
corona10 committed Apr 20, 2022
commit 9b3dbd0a56cff8be258fa3e4a4025a58073276df
5 changes: 2 additions & 3 deletions Objects/genericaliasobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,9 +683,8 @@ ga_iter_clear(PyObject *self) {
return 0;
}

/* gh-91632: _Py_GenericAliasIterType is exported to be cleared
in _PyTypes_FiniTypes.
*/
// 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",
Expand Down
0