mirror of https://github.com/python/cpython
more public symbols for __all__
This commit is contained in:
parent
81e142b907
commit
951a8841d1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue