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