summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/httplib.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py
index fb87099..1e08539 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -74,7 +74,12 @@ try:
except ImportError:
from StringIO import StringIO
-__all__ = ["HTTP"]
+__all__ = ["HTTP", "HTTPResponse", "HTTPConnection", "HTTPSConnection",
+ "HTTPException", "NotConnected", "UnknownProtocol",
+ "UnknownTransferEncoding", "IllegalKeywordArgument",
+ "UnimplementedFileMode", "IncompleteRead",
+ "ImproperConnectionState", "CannotSendRequest", "CannotSendHeader",
+ "ResponseNotReady", "BadStatusLine", "error"]
HTTP_PORT = 80
HTTPS_PORT = 443