summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-11 19:35:49 (GMT)
committerGitHub <noreply@github.com>2024-06-11 19:35:49 (GMT)
commita6c4080aaa646d8d3a0e54a6de7557b230c09341 (patch)
tree648cb1cab21e45ee108d4dd6d135b5d7576bb28e /Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst
parentf5289c450a324bd560b328ecd42ac9faf578276e (diff)
downloadcpython-a6c4080aaa646d8d3a0e54a6de7557b230c09341.zip
cpython-a6c4080aaa646d8d3a0e54a6de7557b230c09341.tar.gz
cpython-a6c4080aaa646d8d3a0e54a6de7557b230c09341.tar.bz2
gh-120198: Fix race condition when editing __class__ with an audit hook active (GH-120195)
(cherry picked from commit 203565b2f9c74656ba519780049b46d4e5afcba1) Co-authored-by: Ken Jin <kenjin@python.org>
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst
new file mode 100644
index 0000000..8dc8aec
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst
@@ -0,0 +1 @@
+Fix a crash when multiple threads read and write to the same ``__class__`` of an object concurrently.