summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2018-03-10 15:48:35 (GMT)
committerGitHub <noreply@github.com>2018-03-10 15:48:35 (GMT)
commit5e80a71ab67045fecec46573a1892e240b569ace (patch)
treecad61013965a2d9aea439e12ddad2346fae279ea /Misc
parent496431ffb6c29719332bf2af773349e8dd85e45a (diff)
downloadcpython-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.rst1
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.