[pypy-svn] r77364 - pypy/branch/fast-forward/pypy/module/_ssl

afa at codespeak.net afa at codespeak.net
Sat Sep 25 09:42:21 CEST 2010


Author: afa
Date: Sat Sep 25 09:42:19 2010
New Revision: 77364

Modified:
   pypy/branch/fast-forward/pypy/module/_ssl/interp_ssl.py
Log:
Used wrong constant names...


Modified: pypy/branch/fast-forward/pypy/module/_ssl/interp_ssl.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/_ssl/interp_ssl.py	(original)
+++ pypy/branch/fast-forward/pypy/module/_ssl/interp_ssl.py	Sat Sep 25 09:42:19 2010
@@ -118,9 +118,9 @@
 constants["SSL_ERROR_EOF"] = PY_SSL_ERROR_EOF
 constants["SSL_ERROR_INVALID_ERROR_CODE"] = PY_SSL_ERROR_INVALID_ERROR_CODE
 
-constants["SSL_CERT_NONE"]     = PY_SSL_CERT_NONE
-constants["SSL_CERT_OPTIONAL"] = PY_SSL_CERT_OPTIONAL
-constants["SSL_CERT_REQUIRED"] = PY_SSL_CERT_REQUIRED
+constants["CERT_NONE"]     = PY_SSL_CERT_NONE
+constants["CERT_OPTIONAL"] = PY_SSL_CERT_OPTIONAL
+constants["CERT_REQUIRED"] = PY_SSL_CERT_REQUIRED
 
 constants["PROTOCOL_SSLv2"]  = PY_SSL_VERSION_SSL2
 constants["PROTOCOL_SSLv3"]  = PY_SSL_VERSION_SSL3



More information about the Pypy-commit mailing list