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:
@@ -2,11 +2,12 @@ import sys
|
||||
from _typeshed import Self
|
||||
from types import TracebackType
|
||||
from typing import TypeVar, overload
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
if sys.platform != "win32":
|
||||
_T = TypeVar("_T")
|
||||
_KeyType = str | bytes
|
||||
_ValueType = str | bytes
|
||||
_KeyType: TypeAlias = str | bytes
|
||||
_ValueType: TypeAlias = str | bytes
|
||||
|
||||
open_flags: str
|
||||
|
||||
|
||||
Reference in New Issue
Block a user