summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-08-13 18:54:50 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-08-13 18:54:50 (GMT)
commitc4ad0345cf7789dc432ff57ab644db230d8baf1c (patch)
tree984552a9edaf0637ce702e8ffbf07029cac53e8d /Misc
parentaa66a968d4842c7dca0063c27520162d96fd7fe7 (diff)
downloadcpython-c4ad0345cf7789dc432ff57ab644db230d8baf1c.zip
cpython-c4ad0345cf7789dc432ff57ab644db230d8baf1c.tar.gz
cpython-c4ad0345cf7789dc432ff57ab644db230d8baf1c.tar.bz2
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 48c58fb..54758ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -362,6 +362,10 @@ Library
- Issue #4660: If a multiprocessing.JoinableQueue.put() was preempted, it was
possible to get a spurious 'task_done() called too many times' error.
+- 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 #6595: The Decimal constructor now allows arbitrary Unicode
decimal digits in input, as recommended by the standard. Previously
it was restricted to accepting [0-9].