From: Skip Montanaro Date: Fri, 1 Jun 2001 16:25:38 +0000 (+0000) Subject: more public symbols for __all__ X-Git-Tag: v2.2a3~1634 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=951a8841d15ca9ba489641a67faa446f3264405f;p=thirdparty%2FPython%2Fcpython.git more public symbols for __all__ --- diff --git a/Lib/httplib.py b/Lib/httplib.py index fb87099ee994..1e08539e2fec 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