mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
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:
parent
727a463aa6
commit
b4bebdafe3
4 changed files with 54 additions and 13 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue