10000 GH-131498: Cases generator: Parse down to C statement level. by markshannon · Pull Request #131948 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-131498: Cases generator: Parse down to C statement level. #131948

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 14 commits into from
Apr 2, 2025
Merged
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
markshannon committed Apr 1, 2025
commit 63e705e20e08e9e6be71c49bb5c6787ac4709509
2 changes: 1 addition & 1 deletion Tools/cases_generator/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def label_def(self) -> LabelDef | None:
@contextual
def inst_def(self) -> InstDef | None:
if hdr := self.inst_header():
block := self.block()
block = self.block()
return InstDef(
hdr.annotations,
hdr.kind,
Expand Down
Loading
0