From 7949c936a6aa8f7d519071701b95eecd21e845d7 Mon Sep 17 00:00:00 2001 From: Adrien Chauve Date: Sat, 31 Dec 2016 16:09:45 +0100 Subject: [PATCH] Add FormattedValue and JoinedStr to typed_ast ast35 --- third_party/3/typed_ast/ast35.pyi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/third_party/3/typed_ast/ast35.pyi b/third_party/3/typed_ast/ast35.pyi index 71ac1bae386b..af2c463373dd 100644 --- a/third_party/3/typed_ast/ast35.pyi +++ b/third_party/3/typed_ast/ast35.pyi @@ -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