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
Next Next commit
Fix whitespace
  • Loading branch information
gvanrossum committed Nov 4, 2022
commit 90722914cc5320c5d3a9d5613bb3d22a3df48bcc
2 changes: 1 addition & 1 deletion Tools/cases_generator/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Node:
@property
def text(self) -> str:
return self.to_text()

def to_text(self, dedent: int = 0) -> str:
context = self.context
if not context:
Expand Down
0