mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Add __all__ for modules beginning with 'h' and 'i' (#7327)
This commit is contained in:
@@ -7,6 +7,28 @@ from _typeshed import Self, WriteableBuffer
|
||||
from socket import socket
|
||||
from typing import IO, Any, BinaryIO, Callable, Iterable, Iterator, Mapping, Protocol, TypeVar, Union, overload
|
||||
|
||||
__all__ = [
|
||||
"HTTPResponse",
|
||||
"HTTPConnection",
|
||||
"HTTPException",
|
||||
"NotConnected",
|
||||
"UnknownProtocol",
|
||||
"UnknownTransferEncoding",
|
||||
"UnimplementedFileMode",
|
||||
"IncompleteRead",
|
||||
"InvalidURL",
|
||||
"ImproperConnectionState",
|
||||
"CannotSendRequest",
|
||||
"CannotSendHeader",
|
||||
"ResponseNotReady",
|
||||
"BadStatusLine",
|
||||
"LineTooLong",
|
||||
"RemoteDisconnected",
|
||||
"error",
|
||||
"responses",
|
||||
"HTTPSConnection",
|
||||
]
|
||||
|
||||
_DataType = Union[bytes, IO[Any], Iterable[bytes], str]
|
||||
_T = TypeVar("_T")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user