diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-14 05:29:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-14 05:29:33 (GMT) |
commit | 1aa1803b3df2af9481628b8896babbd686d314ff (patch) | |
tree | 99dfb5baa41ef4b4740d8403821c8093ca712812 /Misc | |
parent | 4ec14c2360c967da2194eae96b3034a48aa06fad (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |