From: Antoine Pitrou Date: Tue, 29 Apr 2014 08:05:59 +0000 (+0200) Subject: Add porting note for issue #20951. X-Git-Tag: v3.5.0a1~1769 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92c4d4532662f2a584ecf5c14b8d692159cfd08c;p=thirdparty%2FPython%2Fcpython.git Add porting note for issue #20951. --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index b9ad68411b4e..02ff8336675b 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -213,3 +213,7 @@ that may require changes to your code. if it represented midnight in UTC. This behavior was considered obscure and error-prone and has been removed in Python 3.5. See :issue:`13936` for full details. + +* :meth:`ssl.SSLSocket.send()` now raises either :exc:`ssl.SSLWantReadError` + or :exc:`ssl.SSLWantWriteError` on a non-blocking socket if the operation + would block. Previously, it would return 0. See :issue:`20951`.