summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOfey Chan <ofey206@gmail.com>2022-10-02 03:57:17 (GMT)
committerGitHub <noreply@github.com>2022-10-02 03:57:17 (GMT)
commitd63943860974f232b5f027dc6535d25d1b4d8fc0 (patch)
tree34ba0432e98431c890451f323cd79ecea5e2dc5b /Misc
parent8baef8ae367041a5cfefb40b19c7b87e9bcb56a2 (diff)
downloadcpython-d63943860974f232b5f027dc6535d25d1b4d8fc0.zip
cpython-d63943860974f232b5f027dc6535d25d1b4d8fc0.tar.gz
cpython-d63943860974f232b5f027dc6535d25d1b4d8fc0.tar.bz2
gh-97591: In `Exception.__setstate__()` acquire strong references before calling `tp_hash` slot (#97700)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-10-01-08-55-09.gh-issue-97591.pw6kkH.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-10-01-08-55-09.gh-issue-97591.pw6kkH.rst b/Misc/NEWS.d/next/Core and Builtins/2022-10-01-08-55-09.gh-issue-97591.pw6kkH.rst
new file mode 100644
index 0000000..d3a5867d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-10-01-08-55-09.gh-issue-97591.pw6kkH.rst
@@ -0,0 +1,2 @@
+Fixed a missing incref/decref pair in `Exception.__setstate__()`.
+Patch by Ofey Chan.