This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith, lukasz.langa
Date 2019-05-25.20:57:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558817834.95.0.692781617754.issue37050@roundup.psfhosted.org>
In-reply-to
Content
I added the expr_text optional field to the FormattedValue node in order to implement the '=' feature of f-strings (see issue 36817).

However, the expr_text field isn't strictly needed. Instead, the same feature could be added with another Constant string node child of the JoinedStr node.

I'm going to remove expr_text and use another Constant in order to remove this change to the 3.8 ast nodes. I have a patch mostly worked out, I'll have it ready in the next day or two. I want to get this in to 3.8 beta 1, because otherwise we're stuck with the expr_text implementation.
History
Date User Action Args
2019-05-25 20:57:14eric.smithsetrecipients: + eric.smith, lukasz.langa
2019-05-25 20:57:14eric.smithsetmessageid: <1558817834.95.0.692781617754.issue37050@roundup.psfhosted.org>
2019-05-25 20:57:14eric.smithlinkissue37050 messages
2019-05-25 20:57:14eric.smithcreate