diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-27 18:42:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 18:42:48 (GMT) |
commit | 4463d2e01886824ccc7857205f6acb9a3d01d0ab (patch) | |
tree | fc8d8f89a9c41e3484d0f6edb0a18c76bc8b3951 /Misc/NEWS.d | |
parent | 46047bb12b4570adc9f81577568669930e12b590 (diff) | |
download | cpython-4463d2e01886824ccc7857205f6acb9a3d01d0ab.zip cpython-4463d2e01886824ccc7857205f6acb9a3d01d0ab.tar.gz cpython-4463d2e01886824ccc7857205f6acb9a3d01d0ab.tar.bz2 |
[3.12] bpo-41422: Visit the Pickler's and Unpickler's memo in tp_traverse (GH-21664) (GH-112464)
(cherry picked from commit 967f2a3052c2d22e31564b428a9aa8cc63dc2a9f)
Co-authored-by: kale-smoothie <34165060+kale-smoothie@users.noreply.github.com>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-07-28-20-48-05.bpo-41422.iMwnMu.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-07-28-20-48-05.bpo-41422.iMwnMu.rst b/Misc/NEWS.d/next/Library/2020-07-28-20-48-05.bpo-41422.iMwnMu.rst new file mode 100644 index 0000000..8bde68f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-07-28-20-48-05.bpo-41422.iMwnMu.rst @@ -0,0 +1,2 @@ +Fixed memory leaks of :class:`pickle.Pickler` and :class:`pickle.Unpickler` involving cyclic references via the +internal memo mapping. |