summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-06-23 09:53:37 (GMT)
committerGitHub <noreply@github.com>2021-06-23 09:53:37 (GMT)
commit5c7940257e1f611e7284fd504887bd29a63d0a94 (patch)
tree8750d9832456431d5695b4f02a2fdfbbb1a3d418 /Misc
parent5a3108044d2e5b694da2d1f4176c9bbaef15c142 (diff)
downloadcpython-5c7940257e1f611e7284fd504887bd29a63d0a94.zip
cpython-5c7940257e1f611e7284fd504887bd29a63d0a94.tar.gz
cpython-5c7940257e1f611e7284fd504887bd29a63d0a94.tar.bz2
bpo-44482: Fix very unlikely resource leak in glob in non-CPython implementations (GH-26843)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-06-22-08-43-04.bpo-44482.U9GznK.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-06-22-08-43-04.bpo-44482.U9GznK.rst b/Misc/NEWS.d/next/Library/2021-06-22-08-43-04.bpo-44482.U9GznK.rst
new file mode 100644
index 0000000..d05fe90
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-06-22-08-43-04.bpo-44482.U9GznK.rst
@@ -0,0 +1,2 @@
+Fix very unlikely resource leak in :mod:`glob` in alternate Python
+implementations.