summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPeter Bierma <zintensitydev@gmail.com>2024-11-15 10:21:30 (GMT)
committerGitHub <noreply@github.com>2024-11-15 10:21:30 (GMT)
commitd4c72fed8cba8e15ab7bb6c30a92bc9f2c8f0a2c (patch)
tree89a8d7c1b8cd2eb3de00dc072dec5d3559af5fe9 /Misc
parent8717f792f7cc343599dc60daf80630cceb66145b (diff)
downloadcpython-d4c72fed8cba8e15ab7bb6c30a92bc9f2c8f0a2c.zip
cpython-d4c72fed8cba8e15ab7bb6c30a92bc9f2c8f0a2c.tar.gz
cpython-d4c72fed8cba8e15ab7bb6c30a92bc9f2c8f0a2c.tar.bz2
gh-126312: Don't traverse frozen objects on the free-threaded build (#126338)
Also, _PyGC_Freeze() no longer freezes unreachable objects. Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-11-02-14-43-46.gh-issue-126312.LMHzLT.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-11-02-14-43-46.gh-issue-126312.LMHzLT.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-02-14-43-46.gh-issue-126312.LMHzLT.rst
new file mode 100644
index 0000000..19c8f0a
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-02-14-43-46.gh-issue-126312.LMHzLT.rst
@@ -0,0 +1,2 @@
+Fix crash during garbage collection on an object frozen by :func:`gc.freeze` on the
+free-threaded build.