mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Add __all__ for modules beginning with 'c' and 'd' (#7303)
This commit is contained in:
@@ -4,6 +4,21 @@ from typing import Any, AnyStr, Callable, Generic, Iterable, Iterator, NamedTupl
|
||||
if sys.version_info >= (3, 9):
|
||||
from types import GenericAlias
|
||||
|
||||
__all__ = [
|
||||
"get_close_matches",
|
||||
"ndiff",
|
||||
"restore",
|
||||
"SequenceMatcher",
|
||||
"Differ",
|
||||
"IS_CHARACTER_JUNK",
|
||||
"IS_LINE_JUNK",
|
||||
"context_diff",
|
||||
"unified_diff",
|
||||
"diff_bytes",
|
||||
"HtmlDiff",
|
||||
"Match",
|
||||
]
|
||||
|
||||
_T = TypeVar("_T")
|
||||
|
||||
class Match(NamedTuple):
|
||||
|
||||
Reference in New Issue
Block a user