aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-01-12 16:43:32 +0200
committerGitHub <noreply@github.com>2021-01-12 15:43:32 +0100
commit4db8988420e0a122d617df741381b0c385af032c (patch)
tree533eb5980e1fc95527f72202f60591b4be23d69a /Misc/NEWS.d
parentbpo-42882: Add test_embed.test_unicode_id_init() (GH-24198) (diff)
downloadcpython-4db8988420e0a122d617df741381b0c385af032c.tar.gz
cpython-4db8988420e0a122d617df741381b0c385af032c.tar.bz2
cpython-4db8988420e0a122d617df741381b0c385af032c.zip
bpo-41994: Fix refcount issues in Python/import.c (GH-22632)
https://bugs.python.org/issue41994
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-10-10-14-16-03.bpo-41994.Xop8sV.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-10-14-16-03.bpo-41994.Xop8sV.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-10-14-16-03.bpo-41994.Xop8sV.rst
new file mode 100644
index 00000000000..36d5011ee71
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-10-14-16-03.bpo-41994.Xop8sV.rst
@@ -0,0 +1 @@
+Fixed possible leak in ``import`` when ``sys.modules`` is not a ``dict``.