diff options
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 27a9e01..4750685 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -74,6 +74,8 @@ try: except ImportError: from StringIO import StringIO +__all__ = ["HTTP"] + HTTP_PORT = 80 HTTPS_PORT = 443 |