8000 [waiting for typed_ast changes] Implement PEP 526 in typed_ast by ilevkivskyi · Pull Request #548 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

[waiting for typed_ast changes] Implement PEP 526 in typed_ast #548

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Sep 28, 2016
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions third_party/3/typed_ast/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# This module is a fork of the CPython 2.7 and 3.5 ast modules with PEP 484 support.
# See: https://github.com/dropbox/typed_ast

__version__ = ... # type: str
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is now no longer part of typed_ast.

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