diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2018-03-10 15:48:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-10 15:48:35 (GMT) |
commit | 5e80a71ab67045fecec46573a1892e240b569ace (patch) | |
tree | cad61013965a2d9aea439e12ddad2346fae279ea /Misc | |
parent | 496431ffb6c29719332bf2af773349e8dd85e45a (diff) | |
download | cpython-5e80a71ab67045fecec46573a1892e240b569ace.zip cpython-5e80a71ab67045fecec46573a1892e240b569ace.tar.gz cpython-5e80a71ab67045fecec46573a1892e240b569ace.tar.bz2 |
bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044)
* Skip write()/data_received() if sslpipe is destroyed
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-03-09-23-07-07.bpo-33037.nAJ3at.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-03-09-23-07-07.bpo-33037.nAJ3at.rst b/Misc/NEWS.d/next/Library/2018-03-09-23-07-07.bpo-33037.nAJ3at.rst new file mode 100644 index 0000000..2732eeb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-03-09-23-07-07.bpo-33037.nAJ3at.rst @@ -0,0 +1 @@ +Skip sending/receiving data after SSL transport closing. |