diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-07-06 04:04:07 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-07-06 04:04:07 (GMT) |
commit | f8f30fad4dfdad4a655942963c1e5fc3ae0d9cfb (patch) | |
tree | 529267ed2e72f1813b52c404b0e88895e26613b0 /Misc | |
parent | 6d7f9375a5181925f561720cdbce0a618a57606a (diff) | |
download | cpython-f8f30fad4dfdad4a655942963c1e5fc3ae0d9cfb.zip cpython-f8f30fad4dfdad4a655942963c1e5fc3ae0d9cfb.tar.gz cpython-f8f30fad4dfdad4a655942963c1e5fc3ae0d9cfb.tar.bz2 |
Backport r62627 + r62744 from trunk to fix issue 2632.
- Issue #2632: Prevent socket.read(bignumber) from over allocating memory
in the common case when the data is returned from the underlying socket
in increments much smaller than bignumber.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -102,6 +102,9 @@ Library stdout and stderr fds rather than leaving them open until the instance is destroyed. +- Issue #2632: Prevent socket.read(bignumber) from over allocating memory + in the common case when the data is returned from the underlying socket + in increments much smaller than bignumber. Extension Modules ----------------- |