From: Skip Montanaro Date: Thu, 31 May 2001 18:03:22 +0000 (+0000) Subject: expand __all__ to include a bunch of names that should have been there X-Git-Tag: v2.1.1c1~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=362612c155c84cda7c34fa0658d60fb5357ab12e;p=thirdparty%2FPython%2Fcpython.git expand __all__ to include a bunch of names that should have been there before. --- 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