summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2022-04-20 14:10:41 (GMT)
committerGitHub <noreply@github.com>2022-04-20 14:10:41 (GMT)
commitf571c26fc1805790cacb73e70cbb0291204d41e7 (patch)
treed77bf567738a2def3efc0a8f85b7145e723cb443 /Misc/NEWS.d
parentf92bcfe6dea7d52dcc7077585d8818e8a0209604 (diff)
downloadcpython-f571c26fc1805790cacb73e70cbb0291204d41e7.zip
cpython-f571c26fc1805790cacb73e70cbb0291204d41e7.tar.gz
cpython-f571c26fc1805790cacb73e70cbb0291204d41e7.tar.bz2
gh-91632: Fix generic_alias_iterator to be finalized at exit. (GH-91727)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-04-20-14-43-37.gh-issue-91632.cvUhsZ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-04-20-14-43-37.gh-issue-91632.cvUhsZ.rst b/Misc/NEWS.d/next/Core and Builtins/2022-04-20-14-43-37.gh-issue-91632.cvUhsZ.rst
new file mode 100644
index 0000000..e783782
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-04-20-14-43-37.gh-issue-91632.cvUhsZ.rst
@@ -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.