summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-25 13:01:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-25 13:01:53 (GMT)
commita49de6be3669e4698ea55d22e0fdebb29be63f2e (patch)
treece1d0e35d71de6a04b8a8cb6b77e1cd18941c535 /Misc
parent4f44d53770c42818a4d8ca4036e2602fff3a7c88 (diff)
downloadcpython-a49de6be3669e4698ea55d22e0fdebb29be63f2e.zip
cpython-a49de6be3669e4698ea55d22e0fdebb29be63f2e.tar.gz
cpython-a49de6be3669e4698ea55d22e0fdebb29be63f2e.tar.bz2
Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
invalid data including tuple instructions.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c98cd96..347ce48 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -106,6 +106,9 @@ Core and Builtins
Library
-------
+- Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
+ invalid data including tuple instructions.
+
- Issue #25663: In the Readline completer, avoid listing duplicate global
names, and search the global namespace before searching builtins.