from _socket import *
_have_ssl = False
-try:
- import _ssl
- from _ssl import *
- _have_ssl = True
-except ImportError:
- pass
+## try:
+## import _ssl
+## from _ssl import *
+## _have_ssl = True
+## except ImportError:
+## pass
import os, sys, io
# Wrapper module for _ssl, providing some additional facilities
# implemented in Python. Written by Bill Janssen.
+raise ImportError("ssl.py is temporarily out of order")
+
"""\
This module provides some more Pythonic support for SSL.
if not hasattr(socket, "ssl"):
raise test_support.TestSkipped("socket module has no ssl support")
- raise test_support.TestSkipped("Disabling this until ssl.py is fixed")
-
tests = [BasicTests]
if test_support.is_resource_enabled('network'):
if skip_expected:
raise test_support.TestSkipped("socket module has no ssl support")
- raise test_support.TestSkipped("Disabling this until ssl.py is fixed")
-
global CERTFILE
CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir,
"keycert.pem")