From 99051477d0df9fad1217382fd4e44dd589099f5f Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Thu, 20 Aug 2020 19:40:49 -0700 Subject: [PATCH] Added support for PEP613 (TypeAlias) in typing.pyi --- stdlib/3/typing.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/typing.pyi b/stdlib/3/typing.pyi index 44796424e969..fc8039404039 100644 --- a/stdlib/3/typing.pyi +++ b/stdlib/3/typing.pyi @@ -54,6 +54,7 @@ if sys.version_info >= (3, 10): __name__: str def __init__(self, name: str) -> None: ... Concatenate: _SpecialForm = ... + TypeAlias: _SpecialForm = ... # Return type that indicates a function does not return. # This type is equivalent to the None type, but the no-op Union is necessary to