diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-21 22:56:22 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-21 22:56:22 (GMT) |
commit | 5bc7ec94760d7eae50da1751c3fd4bab01a34712 (patch) | |
tree | 7aba368ce0a39c937f3f63737d140d53964d755f /Misc | |
parent | 5ae681081975ac074bd030d3f23e99e3644cfe10 (diff) | |
download | cpython-5bc7ec94760d7eae50da1751c3fd4bab01a34712.zip cpython-5bc7ec94760d7eae50da1751c3fd4bab01a34712.tar.gz cpython-5bc7ec94760d7eae50da1751c3fd4bab01a34712.tar.bz2 |
Merged revisions 80325 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80325 | antoine.pitrou | 2010-04-22 00:53:29 +0200 (jeu., 22 avril 2010) | 6 lines
Issue #7332: Remove the 16KB stack-based buffer in
PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable
benefit compared to the dynamic memory allocation fallback. Patch by
Charles-François Natali.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -540,6 +540,7 @@ Piotr Meyer John Nagle Takahiro Nakayama Travers Naran +Charles-François Natali Fredrik Nehr Trent Nelson Tony Nelson @@ -12,6 +12,11 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #7332: Remove the 16KB stack-based buffer in + PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable + benefit compared to the dynamic memory allocation fallback. Patch by + Charles-François Natali. + - Issue #8417: Raise an OverflowError when an integer larger than sys.maxsize is passed to bytes or bytearray. |