From 189bdfb279e5bbd3c3d3d59619ff23496005707f Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Thu, 20 Aug 2020 20:45:04 -0700 Subject: [PATCH] Added support for PEP613 (TypeAlias) in typing.pyi (#4472) Co-authored-by: Eric Traut --- stdlib/3/typing.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/typing.pyi b/stdlib/3/typing.pyi index 44796424e..fc8039404 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