8000 GH-98831: Implement super-instruction generation by gvanrossum · Pull Request #99084 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-98831: Implement super-instruction generation #99084

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 6 commits into from
Nov 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove debug print
  • Loading branch information
gvanrossum committed Nov 4, 2022
commit b5fe9fa2652ac6033032f19a6423b4ff7e920750
1 change: 0 additions & 1 deletion Tools/cases_generator/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ def super_def(self) -> Super | None:
if self.expect(lx.EQUALS):
if ops := self.ops():
res = Super(tkn.text, ops)
print("super=", res)
return res

def ops(self) -> list[str] | None:
Expand Down
0