mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
gh-108455: peg generator: Use strict_optional=True for grammar_parser (#108629)
This commit is contained in:
parent
30305d6d01
commit
f8be2e262c
2 changed files with 1 additions and 4 deletions
|
|
@ -14,8 +14,5 @@ enable_error_code = truthy-bool,ignore-without-code
|
|||
warn_return_any = False
|
||||
warn_unreachable = False
|
||||
|
||||
[mypy-pegen.grammar_parser]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-setuptools.*]
|
||||
ignore_missing_imports = True
|
||||
|
|
|
|||
|
|
@ -349,7 +349,7 @@ def initial_names(self) -> AbstractSet[str]:
|
|||
|
||||
Plain = Union[Leaf, Group]
|
||||
Item = Union[Plain, Opt, Repeat, Forced, Lookahead, Rhs, Cut]
|
||||
RuleName = Tuple[str, str]
|
||||
RuleName = Tuple[str, Optional[str]]
|
||||
MetaTuple = Tuple[str, Optional[str]]
|
||||
MetaList = List[MetaTuple]
|
||||
RuleList = List[Rule]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue