summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2017-09-06 04:55:40 (GMT)
committerGitHub <noreply@github.com>2017-09-06 04:55:40 (GMT)
commit6877111648ac3e042ee5d0458cbeb65dd1a84b2d (patch)
treec1e843cdc84d478c6ae396e892c274392e84c95e /Misc
parent3463ee3972e0d14351ee18bce60ecfbf7ac96772 (diff)
downloadcpython-6877111648ac3e042ee5d0458cbeb65dd1a84b2d.zip
cpython-6877111648ac3e042ee5d0458cbeb65dd1a84b2d.tar.gz
cpython-6877111648ac3e042ee5d0458cbeb65dd1a84b2d.tar.bz2
bpo-29781: Fix SSLObject.version before handshake (#3364)
SSLObject.version() now correctly returns None when handshake over BIO has not been performed yet. Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Security/2017-09-05-15-26-30.bpo-29781.LwYtBP.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2017-09-05-15-26-30.bpo-29781.LwYtBP.rst b/Misc/NEWS.d/next/Security/2017-09-05-15-26-30.bpo-29781.LwYtBP.rst
new file mode 100644
index 0000000..b9106a5
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2017-09-05-15-26-30.bpo-29781.LwYtBP.rst
@@ -0,0 +1,2 @@
+SSLObject.version() now correctly returns None when handshake over BIO has
+not been performed yet.