mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
more public symbols for __all__
This commit is contained in:
parent
81e142b907
commit
951a8841d1
1 changed files with 6 additions and 1 deletions
|
@ -74,7 +74,12 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from StringIO import StringIO
|
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
|
HTTP_PORT = 80
|
||||||
HTTPS_PORT = 443
|
HTTPS_PORT = 443
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue