summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-27 17:52:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-27 17:52:25 (GMT)
commit6d7df638370b7298a78af1e55e6cbb36f77b42ec (patch)
treea0eeb8015c3376cfcab50c491b0373a5af319dbe /Misc
parent0ae33611faba57f650b5083df6eebd655457f687 (diff)
downloadcpython-6d7df638370b7298a78af1e55e6cbb36f77b42ec.zip
cpython-6d7df638370b7298a78af1e55e6cbb36f77b42ec.tar.gz
cpython-6d7df638370b7298a78af1e55e6cbb36f77b42ec.tar.bz2
Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is
received. Now sendall() properly calls signal handlers if necessary, and retries sending if these returned successfully, including on sockets with a timeout.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b3af982..2fb3b95 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,11 @@ Core and Builtins
Library
-------
+- Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is
+ received. Now sendall() properly calls signal handlers if necessary,
+ and retries sending if these returned successfully, including on sockets
+ with a timeout.
+
- Issue #9947: logging: Fixed locking bug in stopListening.
- Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler.