mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Use TypeAlias where possible for type aliases (#7630)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import sys
|
||||
from typing import Any, Callable
|
||||
from typing_extensions import Literal
|
||||
from typing_extensions import Literal, TypeAlias
|
||||
|
||||
DEBUG_COLLECTABLE: Literal[2]
|
||||
DEBUG_LEAK: Literal[38]
|
||||
@@ -8,7 +8,7 @@ DEBUG_SAVEALL: Literal[32]
|
||||
DEBUG_STATS: Literal[1]
|
||||
DEBUG_UNCOLLECTABLE: Literal[4]
|
||||
|
||||
_CallbackType = Callable[[Literal["start", "stop"], dict[str, int]], object]
|
||||
_CallbackType: TypeAlias = Callable[[Literal["start", "stop"], dict[str, int]], object]
|
||||
|
||||
callbacks: list[_CallbackType]
|
||||
garbage: list[Any]
|
||||
|
||||
Reference in New Issue
Block a user