diff options
author | Ken Jin <kenjin@python.org> | 2024-06-11 19:10:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 19:10:23 (GMT) |
commit | 203565b2f9c74656ba519780049b46d4e5afcba1 (patch) | |
tree | 009a4eadfbdfe04f89628880010860a67125441c /Misc | |
parent | 939c201e00943c6dc2d515185168c30606ae522c (diff) | |
download | cpython-203565b2f9c74656ba519780049b46d4e5afcba1.zip cpython-203565b2f9c74656ba519780049b46d4e5afcba1.tar.gz cpython-203565b2f9c74656ba519780049b46d4e5afcba1.tar.bz2 |
gh-120198: Fix race condition when editing __class__ with an audit hook active (GH-120195)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-06-10-15-07-16.gh-issue-120198.WW_pjO.rst | 1 |
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. |