https://github.com/python/cpython/commit/0936a53b033fcd87bdc07dba9aa2cb18b7e3935a commit: 0936a53b033fcd87bdc07dba9aa2cb18b7e3935a branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-07-19T09:17:27Z summary:
[3.13] parser_generator.py typo - keywods -> keywords (GH-135014) (#136773) Co-authored-by: chemelnucfin <3982092+chemelnuc...@users.noreply.github.com> files: M Tools/peg_generator/pegen/parser_generator.py diff --git a/Tools/peg_generator/pegen/parser_generator.py b/Tools/peg_generator/pegen/parser_generator.py index ad28f6c27dcb37..a2f1c08330f713 100644 --- a/Tools/peg_generator/pegen/parser_generator.py +++ b/Tools/peg_generator/pegen/parser_generator.py @@ -55,7 +55,7 @@ def visit_NamedItem(self, item: NamedItem) -> None: class KeywordCollectorVisitor(GrammarVisitor): - """Visitor that collects all the keywods and soft keywords in the Grammar""" + """Visitor that collects all the keywords and soft keywords in the Grammar""" def __init__(self, gen: "ParserGenerator", keywords: Dict[str, int], soft_keywords: Set[str]): self.generator = gen _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: arch...@mail-archive.com