diff options
author | Sam Gross <colesbury@gmail.com> | 2024-10-11 07:56:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-11 07:56:01 (GMT) |
commit | b12e99261e656585ffbaa395af7c5dbaee5ad1ad (patch) | |
tree | 2c8f481edb4e08dbe51733abdfa59b3ae9febf07 /Misc | |
parent | c1913effeed4e4da4d5310a40ab518945001ffba (diff) | |
download | cpython-b12e99261e656585ffbaa395af7c5dbaee5ad1ad.zip cpython-b12e99261e656585ffbaa395af7c5dbaee5ad1ad.tar.gz cpython-b12e99261e656585ffbaa395af7c5dbaee5ad1ad.tar.bz2 |
gh-125221: Fix free-threading data race in `object.__reduce_ex__` (#125267)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-10-10-14-47-13.gh-issue-125221.nfSQzT.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-10-10-14-47-13.gh-issue-125221.nfSQzT.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-10-10-14-47-13.gh-issue-125221.nfSQzT.rst new file mode 100644 index 0000000..c79650c --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-10-10-14-47-13.gh-issue-125221.nfSQzT.rst @@ -0,0 +1,2 @@ +Fix possible race condition when calling :meth:`~object.__reduce_ex__` for the +first time in the free threading build. |