8000 gh-105858: Improve AST node constructors by JelleZijlstra · Pull Request #105880 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-105858: Improve AST node constructors #105880

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 18 commits into from
Feb 28, 2024
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
Update Parser/asdl_c.py
  • Loading branch information
JelleZijlstra authored Feb 18, 2024
commit 6bf677b715eae9a09645c91cc00e22e530161ce9
2 changes: 1 addition & 1 deletion Parser/asdl_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ def visitModule(self, mod):
self.visit(dfn)
self.file.write(textwrap.dedent('''
if (!add_ast_annotations(state)) {
return 1;
return -1;
}
state->recursion_depth = 0;
state->recursion_limit = 0;
Expand Down
0