Skip to content

Commit

Permalink
Implement PEP 526 in typed_ast (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilevkivskyi authored and ddfisher committed Sep 28, 2016
1 parent aa549db commit 70cfe79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion third_party/3/typed_ast/ast35.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70cfe79

Please sign in to comment.