From: Skip Montanaro Date: Sun, 24 Mar 2002 16:56:45 +0000 (+0000) Subject: oops - export InvalidURL in __all__ X-Git-Tag: v2.3c1~6359 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3f87f743efc252a0f4fa62719a2f9cf52df3f85;p=python oops - export InvalidURL in __all__ --- diff --git a/Lib/httplib.py b/Lib/httplib.py index ce819ebfbf..2faf3189fa 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -79,7 +79,7 @@ except ImportError: __all__ = ["HTTP", "HTTPResponse", "HTTPConnection", "HTTPSConnection", "HTTPException", "NotConnected", "UnknownProtocol", "UnknownTransferEncoding", "IllegalKeywordArgument", - "UnimplementedFileMode", "IncompleteRead", + "UnimplementedFileMode", "IncompleteRead", "InvalidURL", "ImproperConnectionState", "CannotSendRequest", "CannotSendHeader", "ResponseNotReady", "BadStatusLine", "error"]