From 235a6f09847ad554d8bf073d4e1d58d1e398ae8c Mon Sep 17 00:00:00 2001 From: "Eric V. Smith" Date: Sat, 19 Sep 2015 14:51:32 -0400 Subject: Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. --- Parser/Python.asdl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Parser/Python.asdl') diff --git a/Parser/Python.asdl b/Parser/Python.asdl index cd0832da8d..22775c6835 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -71,6 +71,8 @@ module Python | Call(expr func, expr* args, keyword* keywords) | Num(object n) -- a number as a PyObject. | Str(string s) -- need to specify raw, unicode, etc? + | FormattedValue(expr value, int? conversion, expr? format_spec) + | JoinedStr(expr* values) | Bytes(bytes s) | NameConstant(singleton value) | Ellipsis -- cgit v1.2.1