Skip to content
Closed
Changes from all 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
6 changes: 6 additions & 0 deletions third_party/3/typed_ast/ast35.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,12 @@ class Str(expr):
class Bytes(expr):
s = ... # type: bytes

class FormattedValue(expr):
value = ... # type: expr

class JoinedStr(expr):
values = ... # type: typing.List[typing.Union[Str, FormattedValue]]

class NameConstant(expr):
value = ... # type: Any

Expand Down