Skip to content

Commit 70cfe79

Browse files
ilevkivskyiddfisher
authored andcommitted
Implement PEP 526 in typed_ast (#548)
See python/typed_ast#16.
1 parent aa549db commit 70cfe79

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

third_party/3/typed_ast/ast35.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ class Delete(stmt):
8888

8989
class Assign(stmt):
9090
targets = ... # type: typing.List[expr]
91-
value = ... # type: expr
91+
value = ... # type: Optional[expr]
9292
type_comment = ... # type: Optional[str]
93+
annotation = ... # type: Optional[expr]
9394

9495
class AugAssign(stmt):
9596
target = ... # type: expr

0 commit comments

Comments
 (0)