summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-11-30 20:48:31 (GMT)
committerGitHub <noreply@github.com>2017-11-30 20:48:31 (GMT)
commit986375ebde0dd5ff2b7349e445a06bd28a3a8ee2 (patch)
treeee67e631e514c34a9cee64c648b6539da94d3fbd /Misc
parentbc8ac6b00efcb3c601224b73f64071281f434bcd (diff)
downloadcpython-986375ebde0dd5ff2b7349e445a06bd28a3a8ee2.zip
cpython-986375ebde0dd5ff2b7349e445a06bd28a3a8ee2.tar.gz
cpython-986375ebde0dd5ff2b7349e445a06bd28a3a8ee2.tar.bz2
bpo-28416: Break reference cycles in Pickler and Unpickler subclasses (#4080)
with the persistent_id() and persistent_load() methods.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-23-12-05-33.bpo-28416.Ldnw8X.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-23-12-05-33.bpo-28416.Ldnw8X.rst b/Misc/NEWS.d/next/Library/2017-10-23-12-05-33.bpo-28416.Ldnw8X.rst
new file mode 100644
index 0000000..b101482
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-23-12-05-33.bpo-28416.Ldnw8X.rst
@@ -0,0 +1,3 @@
+Instances of pickle.Pickler subclass with the persistent_id() method and
+pickle.Unpickler subclass with the persistent_load() method no longer create
+reference cycles.