-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
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
bpo-32911: Add new AST node for docstring #5927
Conversation
Some changes are not PEP 7 compliant because I've copied from old code before GH-46. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added few nitpicks, but LGTM in general!
Python/ast.c
Outdated
} | ||
} | ||
return NULL; | ||
return 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functions in this file usually return 1 on success and 0 on error (except functions which need to return a non-negative index on success).
c->u->u_lineno = st->lineno; | ||
} | ||
/* Every annotated class and module should have __annotations__. */ | ||
if (find_ann(stmts)) { | ||
ADDOP(c, SETUP_ANNOTATIONS); | ||
} | ||
if (!asdl_seq_LEN(stmts)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe move this to the bottom of this function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be before asdl_seq_GET.
And this code is copied back from 3.6. (There are extra blank line, I'll remove it)
Lines 1457 to 1459 in baa4507
if (!asdl_seq_LEN(stmts)) | |
return 1; | |
st = (stmt_ty)asdl_seq_GET(stmts, 0); |
Tools/parser/unparse.py
Outdated
@@ -81,6 +79,10 @@ def _Expr(self, tree): | |||
self.fill() | |||
self.dispatch(tree.value) | |||
|
|||
def _DocString(self, t): | |||
self.fill() | |||
self.write(repr(t.s)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not fill()
?
https://bugs.python.org/issue32911