Add missing type_comments attr to ast27.arguments (#522)

This commit is contained in:
Michael Lee
2016-09-07 11:55:27 -07:00
committed by Guido van Rossum
parent 25cb6e4ab4
commit a257166149

View File

@@ -347,6 +347,7 @@ class arguments(AST):
vararg = ... # type: Optional[identifier]
kwarg = ... # type: Optional[identifier]
defaults = ... # type: typing.List[expr]
type_comments = ... # type: typing.List[str]
class keyword(AST):
arg = ... # type: identifier