summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-21 11:44:56 (GMT)
committerGitHub <noreply@github.com>2022-11-21 11:44:56 (GMT)
commit37dbbb208fd9e01890bfb2c741e89359582d5569 (patch)
tree2f2fbb65c0c20ef0681484debc689703c5195b82 /Misc/NEWS.d
parent101dfaedb202c5dc1d940bffc953ab1f9aa10bc7 (diff)
downloadcpython-37dbbb208fd9e01890bfb2c741e89359582d5569.zip
cpython-37dbbb208fd9e01890bfb2c741e89359582d5569.tar.gz
cpython-37dbbb208fd9e01890bfb2c741e89359582d5569.tar.bz2
gh-99578: Fix refleak in _imp.create_builtin() (GH-99642)
Fix a reference bug in _imp.create_builtin() after the creation of the first sub-interpreter for modules "builtins" and "sys". (cherry picked from commit cb2ef8b2acbb231c207207d3375b2f8b0077a6ee) Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-11-21-11-27-14.gh-issue-99578.DcKoBJ.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-11-21-11-27-14.gh-issue-99578.DcKoBJ.rst b/Misc/NEWS.d/next/Core and Builtins/2022-11-21-11-27-14.gh-issue-99578.DcKoBJ.rst
new file mode 100644
index 0000000..9321cef
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-11-21-11-27-14.gh-issue-99578.DcKoBJ.rst
@@ -0,0 +1,3 @@
+Fix a reference bug in :func:`_imp.create_builtin()` after the creation of the
+first sub-interpreter for modules ``builtins`` and ``sys``. Patch by Victor
+Stinner.