mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Use TypeAlias where possible for type aliases (#7630)
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
from typing import IO, Any, Callable, Iterator, MutableMapping
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
__all__ = ["dis", "genops", "optimize"]
|
||||
|
||||
_Reader = Callable[[IO[bytes]], Any]
|
||||
_Reader: TypeAlias = Callable[[IO[bytes]], Any]
|
||||
bytes_types: tuple[type[Any], ...]
|
||||
|
||||
UP_TO_NEWLINE: int
|
||||
|
||||
Reference in New Issue
Block a user