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 JelleZijlstra, barry, eric.smith, martin.panter, python-dev, yselivanov
Date 2015-09-12.21:24:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442093058.49.0.457087952341.issue24965@psf.upfronthosting.co.za>
In-reply-to
Content
This one has been fixed:
>>> f"{'a\\'b'}"
"a'b"

This one was a bug that I previously fixed, that Martin pointed out:
>>> f"{x!s!s}"
  File "<stdin>", line 1
SyntaxError: invalid character following conversion character

And this is the same bug:
>>> f"{x!s{y}}"
  File "<stdin>", line 1
SyntaxError: invalid character following conversion character

I'm wrapping up my new code plus tests. I'll post it Real Soon Now.

Thanks for your help.
History
Date User Action Args
2015-09-12 21:24:18eric.smithsetrecipients: + eric.smith, barry, python-dev, martin.panter, yselivanov, JelleZijlstra
2015-09-12 21:24:18eric.smithsetmessageid: <1442093058.49.0.457087952341.issue24965@psf.upfronthosting.co.za>
2015-09-12 21:24:18eric.smithlinkissue24965 messages
2015-09-12 21:24:18eric.smithcreate