commit | c135fa424e768b78fae6ca997d8fe77a0d42447e | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Feb 19 21:22:39 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Feb 19 21:22:39 2012 +0100 |
tree | b966efbdcbf4cdde4669868cf32d20dc3c4a6215 | |
parent | 7b77188e89182e0cf00d42f5556f972a739d6beb [diff] [blame] |
Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay.
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 33f06d6..c6ce075 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py
@@ -102,7 +102,8 @@ ssl.CERT_REQUIRED ssl.OP_CIPHER_SERVER_PREFERENCE ssl.OP_SINGLE_DH_USE - ssl.OP_SINGLE_ECDH_USE + if ssl.HAS_ECDH: + ssl.OP_SINGLE_ECDH_USE if ssl.OPENSSL_VERSION_INFO >= (1, 0): ssl.OP_NO_COMPRESSION self.assertIn(ssl.HAS_SNI, {True, False})