mirror of
https://github.com/python/cpython.git
synced 2025-10-05 14:41:07 +00:00
bpo-41044: Generate valid PEG python parsers for opt+seq rules (GH-20995)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
(cherry picked from commit 55460ee6dc
)
Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
This commit is contained in:
parent
c9f83c173b
commit
9862181750
2 changed files with 15 additions and 1 deletions
|
@ -93,7 +93,13 @@ class PythonCallMakerVisitor(GrammarVisitor):
|
|||
|
||||
def visit_Opt(self, node: Opt) -> Tuple[str, str]:
|
||||
name, call = self.visit(node.node)
|
||||
return "opt", f"{call}," # Note trailing comma!
|
||||
# Note trailing comma (the call may already have one comma
|
||||
# at the end, for example when rules have both repeat0 and optional
|
||||
# markers, e.g: [rule*])
|
||||
if call.endswith(","):
|
||||
return "opt", call
|
||||
else:
|
||||
return "opt", f"{call},"
|
||||
|
||||
def visit_Repeat0(self, node: Repeat0) -> Tuple[str, str]:
|
||||
if node in self.cache:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue