diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-01-12 14:43:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 14:43:32 (GMT) |
commit | 4db8988420e0a122d617df741381b0c385af032c (patch) | |
tree | 533eb5980e1fc95527f72202f60591b4be23d69a /Misc | |
parent | 11d13e83abedabba12b28773317f1a365113e7af (diff) | |
download | cpython-4db8988420e0a122d617df741381b0c385af032c.zip cpython-4db8988420e0a122d617df741381b0c385af032c.tar.gz cpython-4db8988420e0a122d617df741381b0c385af032c.tar.bz2 |
bpo-41994: Fix refcount issues in Python/import.c (GH-22632)
https://bugs.python.org/issue41994
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-10-10-14-16-03.bpo-41994.Xop8sV.rst | 1 |
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 0000000..36d5011 --- /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``. |