summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-27 18:14:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-27 18:14:43 (GMT)
commit08ae02f11e2d34b56859481171bc447ec45d5585 (patch)
treedaf300b488f433eb813627153e1c838fce0d8ae8 /Misc
parent603ca41e27ed67716dd31e6f7e286a137936cc4b (diff)
downloadcpython-08ae02f11e2d34b56859481171bc447ec45d5585.zip
cpython-08ae02f11e2d34b56859481171bc447ec45d5585.tar.gz
cpython-08ae02f11e2d34b56859481171bc447ec45d5585.tar.bz2
Merged revisions 85032 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85032 | antoine.pitrou | 2010-09-27 19:52:25 +0200 (lun., 27 sept. 2010) | 6 lines 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 06848bf..8d41ef3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -121,6 +121,11 @@ C-API
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 #9936: Fixed executable lines' search in the trace module.
- Issue #9928: Properly initialize the types exported by the bz2 module.