http://hg.python.org/cpython/rev/da8486e3e0eb changeset: 88377:da8486e3e0eb branch: 3.3 user: Antoine Pitrou <solipsis at pitrou.net> date: Thu Jan 09 20:07:41 2014 +0100 summary: Remove conditional: it is useless at this point (OpenSSL headers are not yet included) files: Modules/_ssl.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -70,9 +70,7 @@ }; enum py_ssl_version { -#ifndef OPENSSL_NO_SSL2 PY_SSL_VERSION_SSL2, -#endif PY_SSL_VERSION_SSL3=1, PY_SSL_VERSION_SSL23, PY_SSL_VERSION_TLS1 -- Repository URL: http://hg.python.org/cpython