summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-27 18:42:48 (GMT)
committerGitHub <noreply@github.com>2023-11-27 18:42:48 (GMT)
commit4463d2e01886824ccc7857205f6acb9a3d01d0ab (patch)
treefc8d8f89a9c41e3484d0f6edb0a18c76bc8b3951 /Misc/NEWS.d
parent46047bb12b4570adc9f81577568669930e12b590 (diff)
downloadcpython-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.rst2
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.