more public symbols for __all__
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 @@
 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