From 70cfe793d98933ed0ce10f615f2e21201221aa36 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Wed, 28 Sep 2016 19:31:28 +0200 Subject: [PATCH] Implement PEP 526 in typed_ast (#548) See dropbox/typed_ast#16. --- third_party/3/typed_ast/ast35.pyi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/third_party/3/typed_ast/ast35.pyi b/third_party/3/typed_ast/ast35.pyi index 738ac7d8b..04e8a295d 100644 --- a/third_party/3/typed_ast/ast35.pyi +++ b/third_party/3/typed_ast/ast35.pyi @@ -88,8 +88,9 @@ class Delete(stmt): class Assign(stmt): targets = ... # type: typing.List[expr] - value = ... # type: expr + value = ... # type: Optional[expr] type_comment = ... # type: Optional[str] + annotation = ... # type: Optional[expr] class AugAssign(stmt): target = ... # type: expr