]> granicus.if.org Git - python/commit
Issue #20951: SSLSocket.send() now raises either SSLWantReadError or SSLWantWriteErro...
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 29 Apr 2014 08:03:28 +0000 (10:03 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 29 Apr 2014 08:03:28 +0000 (10:03 +0200)
commitb4bebdafe354f68a9b952772da109cccd73f6577
tree939614adab3160c1c9d54ba6975b326a2cdd31b9
parent727a463aa624931a89c796bfa4fe5711e2c403ff
Issue #20951: SSLSocket.send() now raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket if the operation would block. Previously, it would return 0.

Patch by Nikolaus Rath.
Doc/library/ssl.rst
Lib/ssl.py
Lib/test/test_ssl.py
Misc/NEWS