mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 19:41:51 +08:00
Add __all__ to most modules beginning with 'q', 'r' and 's' (#7364)
This commit is contained in:
@@ -3,6 +3,35 @@ import sys
|
||||
from _typeshed import BytesPath, StrOrBytesPath, StrPath, SupportsRead, SupportsWrite
|
||||
from typing import Any, AnyStr, Callable, Iterable, NamedTuple, Sequence, TypeVar, Union, overload
|
||||
|
||||
__all__ = [
|
||||
"copyfileobj",
|
||||
"copyfile",
|
||||
"copymode",
|
||||
"copystat",
|
||||
"copy",
|
||||
"copy2",
|
||||
"copytree",
|
||||
"move",
|
||||
"rmtree",
|
||||
"Error",
|
||||
"SpecialFileError",
|
||||
"ExecError",
|
||||
"make_archive",
|
||||
"get_archive_formats",
|
||||
"register_archive_format",
|
||||
"unregister_archive_format",
|
||||
"get_unpack_formats",
|
||||
"register_unpack_format",
|
||||
"unregister_unpack_format",
|
||||
"unpack_archive",
|
||||
"ignore_patterns",
|
||||
"chown",
|
||||
"which",
|
||||
"get_terminal_size",
|
||||
"SameFileError",
|
||||
"disk_usage",
|
||||
]
|
||||
|
||||
_StrOrBytesPathT = TypeVar("_StrOrBytesPathT", bound=StrOrBytesPath)
|
||||
_StrPathT = TypeVar("_StrPathT", bound=StrPath)
|
||||
# Return value of some functions that may either return a path-like object that was passed in or
|
||||
|
||||
Reference in New Issue
Block a user