aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-01-08 15:01:38 +0100
committerGitHub <noreply@github.com>2021-01-08 15:01:38 +0100
commite542d417b96077d04aec089505eacb990c9799ae (patch)
treeef81dfd04b71bd7f8772f8cee4f0b2d7e900d158 /Misc
parentbpo-42846: Convert CJK codec extensions to multiphase init (GH-24157) (diff)
downloadcpython-e542d417b96077d04aec089505eacb990c9799ae.tar.gz
cpython-e542d417b96077d04aec089505eacb990c9799ae.tar.bz2
cpython-e542d417b96077d04aec089505eacb990c9799ae.zip
bpo-42866: Fix refleak in CJK getcodec() (GH-24165)
Fix a reference leak in the getcodec() function of CJK codecs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-01-08-10-57-21.bpo-42866.Y1DnrO.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-01-08-10-57-21.bpo-42866.Y1DnrO.rst b/Misc/NEWS.d/next/Library/2021-01-08-10-57-21.bpo-42866.Y1DnrO.rst
new file mode 100644
index 00000000000..3ea6cc239aa
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-01-08-10-57-21.bpo-42866.Y1DnrO.rst
@@ -0,0 +1,2 @@
+Fix a reference leak in the ``getcodec()`` function of CJK codecs. Patch by
+Victor Stinner.