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.
This commit is contained in:
Antoine Pitrou 2014-04-29 10:03:28 +02:00
parent 727a463aa6
commit b4bebdafe3
4 changed files with 54 additions and 13 deletions

View file

@ -60,6 +60,10 @@ Core and Builtins
Library
-------
- 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.
- Issue #13248: removed previously deprecated asyncore.dispatcher __getattr__
cheap inheritance hack.