summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-01-04 04:50:36 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-01-04 04:50:36 (GMT)
commitaafdca895b5384455de662f89955f240daaa8caf (patch)
treeaa4290d54b444398f555a0dd141326031deaa77d /Misc
parent960737de5932f91bd901d00d898337b6dc479236 (diff)
downloadcpython-aafdca895b5384455de662f89955f240daaa8caf.zip
cpython-aafdca895b5384455de662f89955f240daaa8caf.tar.gz
cpython-aafdca895b5384455de662f89955f240daaa8caf.tar.bz2
Merged revisions 74426 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74426 | gregory.p.smith | 2009-08-13 11:54:50 -0700 (Thu, 13 Aug 2009) | 4 lines Fix issue1628205: Socket file objects returned by socket.socket.makefile() now properly handles EINTR within the read, readline, write & flush methods. The socket.sendall() method now properly handles interrupted system calls. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1f29728..c78c960 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -194,6 +194,10 @@ C-API
Library
-------
+- Issue #1628205: Socket file objects returned by socket.socket.makefile() now
+ properly handles EINTR within the read, readline, write & flush methods.
+ The socket.sendall() method now properly handles interrupted system calls.
+
- Issue #7471: Improve the performance of GzipFile's buffering mechanism,
and make it implement the `io.BufferedIOBase` ABC to allow for further
speedups by wrapping it in an `io.BufferedReader`. Patch by Nir Aides.