From b1d4f29ed44521ae00fdc98517be720af968c02e Mon Sep 17 00:00:00 2001 From: plokmijnuhby <39633434+plokmijnuhby@users.noreply.github.com> Date: Sun, 24 Sep 2023 16:26:17 +0100 Subject: [PATCH] Add definition for visit_MatchSingleton to ast.NodeVisitor (#10758) --- stdlib/ast.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/ast.pyi b/stdlib/ast.pyi index 377138141..b8f4fb054 100644 --- a/stdlib/ast.pyi +++ b/stdlib/ast.pyi @@ -140,6 +140,7 @@ class NodeVisitor: def visit_Match(self, node: Match) -> Any: ... def visit_MatchValue(self, node: MatchValue) -> Any: ... def visit_MatchSequence(self, node: MatchSequence) -> Any: ... + def visit_MatchSingleton(self, node: MatchSingleton) -> Any: ... def visit_MatchStar(self, node: MatchStar) -> Any: ... def visit_MatchMapping(self, node: MatchMapping) -> Any: ... def visit_MatchClass(self, node: MatchClass) -> Any: ...