summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-14 05:29:33 (GMT)
committerGitHub <noreply@github.com>2017-03-14 05:29:33 (GMT)
commit1aa1803b3df2af9481628b8896babbd686d314ff (patch)
tree99dfb5baa41ef4b4740d8403821c8093ca712812 /Misc
parent4ec14c2360c967da2194eae96b3034a48aa06fad (diff)
downloadcpython-1aa1803b3df2af9481628b8896babbd686d314ff.zip
cpython-1aa1803b3df2af9481628b8896babbd686d314ff.tar.gz
cpython-1aa1803b3df2af9481628b8896babbd686d314ff.tar.bz2
bpo-27880: Fixed integer overflow in cPickle when pickle large strings or (#662)
too many objects.
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 fca1540..2b492f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Extension Modules
Library
-------
+- bpo-27880: Fixed integer overflow in cPickle when pickle large strings or
+ too many objects.
+
- bpo-29110: Fix file object leak in aifc.open() when file is given as a
filesystem path and is not in valid AIFF format.
Original patch by Anthony Zhang.