diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-11 03:52:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 03:52:41 (GMT) |
commit | 54fe3d57bf5078f2d019df20c2db8028eb1a9e0f (patch) | |
tree | 52dfca04646e6e98feec1e90b35b61336893b20d /Misc | |
parent | 0aa9ec9f5d1154319ec4332315fff373505b6373 (diff) | |
download | cpython-54fe3d57bf5078f2d019df20c2db8028eb1a9e0f.zip cpython-54fe3d57bf5078f2d019df20c2db8028eb1a9e0f.tar.gz cpython-54fe3d57bf5078f2d019df20c2db8028eb1a9e0f.tar.bz2 |
gh-92930: _pickle.c: Acquire strong references before calling save() (GH-92931)
(cherry picked from commit 4c496f1f115a7910d4606b4de233d14874c77bfa)
Co-authored-by: Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-05-18-18-34-45.gh-issue-92930.kpYPOb.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-05-18-18-34-45.gh-issue-92930.kpYPOb.rst b/Misc/NEWS.d/next/Core and Builtins/2022-05-18-18-34-45.gh-issue-92930.kpYPOb.rst new file mode 100644 index 0000000..cd5d7b3 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-05-18-18-34-45.gh-issue-92930.kpYPOb.rst @@ -0,0 +1 @@ +Fixed a crash in ``_pickle.c`` from mutating collections during ``__reduce__`` or ``persistent_id``. |