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 Ilya Kamenshchikov, eric.smith
Date 2020-02-26.15:22:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1582730523.13.0.536670854487.issue39760@roundup.psfhosted.org>
In-reply-to
Content
I agree that could probably be simplified, if the format_spec is constant (which it need not be).

>>> ast.dump(ast.parse('f"is {x:d}"'))

"Module(body=[Expr(value=JoinedStr(values=[Str(s='is '), FormattedValue(value=Name(id='x', ctx=Load()), conversion=-1, format_spec=JoinedStr(values=[Str(s='d')]))]))])"

But:

ast.dump(ast.parse('f"is {x:{length+1}d}"'))

"Module(body=[Expr(value=JoinedStr(values=[Str(s='is '), FormattedValue(value=Name(id='x', ctx=Load()), conversion=-1, format_spec=JoinedStr(values=[FormattedValue(value=BinOp(left=Name(id='length', ctx=Load()), op=Add(), right=Num(n=1)), conversion=-1, format_spec=None), Str(s='d')]))]))])"
History
Date User Action Args
2020-02-26 15:22:03eric.smithsetrecipients: + eric.smith, Ilya Kamenshchikov
2020-02-26 15:22:03eric.smithsetmessageid: <1582730523.13.0.536670854487.issue39760@roundup.psfhosted.org>
2020-02-26 15:22:03eric.smithlinkissue39760 messages
2020-02-26 15:22:03eric.smithcreate