From 3eb9ff7f65acede795dc8be615e6f443d1f81578 Mon Sep 17 00:00:00 2001 From: bzoracler <50305397+bzoracler@users.noreply.github.com> Date: Mon, 2 Oct 2023 03:51:02 +1300 Subject: [PATCH] fix `__match_args__` attribute name (#10813) --- stdlib/_ast.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/_ast.pyi b/stdlib/_ast.pyi index 05e2a08fd..402b770c0 100644 --- a/stdlib/_ast.pyi +++ b/stdlib/_ast.pyi @@ -602,7 +602,7 @@ if sys.version_info >= (3, 12): name: _Identifier class TypeAlias(stmt): - __match_args__ = ("name", "typeparams", "value") + __match_args__ = ("name", "type_params", "value") name: Name type_params: list[type_param] value: expr