summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-12-06 02:59:35 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-12-06 02:59:35 (GMT)
commite32467cf6af3e6d113ae2cfd886e403828e23fed (patch)
tree2e6c2e4a1423c91746cb46503aa73073bdc28b07 /Misc
parent81f01fb104683fdfd099b78e5b7b1793a36458c3 (diff)
downloadcpython-e32467cf6af3e6d113ae2cfd886e403828e23fed.zip
cpython-e32467cf6af3e6d113ae2cfd886e403828e23fed.tar.gz
cpython-e32467cf6af3e6d113ae2cfd886e403828e23fed.tar.bz2
allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)
Patch by Kurt Roeckx.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d6a99b..d5bb074 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -215,6 +215,9 @@ Tests
Build
-----
+- Issue #22935: Allow the ssl module to be compiled if openssl doesn't support
+ SSL 3.
+
- Issue #16537: Check whether self.extensions is empty in setup.py. Patch by
Jonathan Hosmer.