summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-04-29 08:05:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-04-29 08:05:59 (GMT)
commit92c4d4532662f2a584ecf5c14b8d692159cfd08c (patch)
tree19c3e301b961b835f9f1534f8aa33ac6dc052301 /Doc/whatsnew
parentb4bebdafe354f68a9b952772da109cccd73f6577 (diff)
downloadcpython-92c4d4532662f2a584ecf5c14b8d692159cfd08c.zip
cpython-92c4d4532662f2a584ecf5c14b8d692159cfd08c.tar.gz
cpython-92c4d4532662f2a584ecf5c14b8d692159cfd08c.tar.bz2
Add porting note for issue #20951.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.5.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index b9ad684..02ff833 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`.