diff options
author | Guido van Rossum <guido@python.org> | 2007-08-29 03:59:57 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-29 03:59:57 +0000 |
commit | 245b42ec4b07682dd44bb92dbde328c7ce78d90b (patch) | |
tree | 46f363979deeda4c8c89bc89b98e155089e4b256 /Lib/ssl.py | |
parent | 1b81e7bea562b6fc9df0a9e99f51b2b4c351ec34 (diff) | |
download | cpython-git-245b42ec4b07682dd44bb92dbde328c7ce78d90b.tar.gz |
Found a different, more direct way to disable ssl support until it's fixed.
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r-- | Lib/ssl.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/ssl.py b/Lib/ssl.py index 99f625747e..77a2ceb2fc 100644 --- a/Lib/ssl.py +++ b/Lib/ssl.py @@ -1,6 +1,8 @@ # 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. |