8000 refactor: update parsimonious to 0.10.0 by kkirsche · Pull Request #8730 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

refactor: update parsimonious to 0.10.0 #8730

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Sep 13, 2022
Merged
Prev Previous commit
Next Next commit
fix: move from Not type to Not as a factory
  • Loading branch information
Kevin Kirsche committed Sep 12, 2022
commit 84831f5ba92968e37f8cc80dc02406b482707f71
2 changes: 1 addition & 1 deletion stubs/parsimonious/parsimonious/grammar.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class RuleVisitor(NodeVisitor):
def visit_quantifier(self, node: Node, quantifier: collections.abc.Sequence[Any]) -> Node: ...
def visit_quantified(self, node: Node, quantified: collections.abc.Sequence[Any]) -> Expression: ...
def visit_lookahead_term(self, node: Node, lookahead_term: collections.abc.Sequence[Any]) -> Lookahead: ...
def visit_not_term(self, node: Node, not_term: collections.abc.Sequence[Any]) -> Not: ...
def visit_not_term(self, node: Node, not_term: collections.abc.Sequence[Any]) -> Lookahead: ...
def visit_rule(self, node: Node, rule: collections.abc.Sequence[Any]) -> Expression: ...
def visit_sequence(self, node: Node, sequence: collections.abc.Sequence[Any]) -> Sequence: ...
def visit_ored(self, node: Node, ored: collections.abc.Sequence[Any]) -> OneOf: ...
Expand Down
0