From a257166149ad8429aacdb144cdb20279522de8a1 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Wed, 7 Sep 2016 11:55:27 -0700 Subject: [PATCH] Add missing `type_comments` attr to ast27.arguments (#522) --- third_party/3/typed_ast/ast27.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/3/typed_ast/ast27.pyi b/third_party/3/typed_ast/ast27.pyi index 40b44da83..8e88972a9 100644 --- a/third_party/3/typed_ast/ast27.pyi +++ b/third_party/3/typed_ast/ast27.pyi @@ -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