Message250530
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. |
|
Date |
User |
Action |
Args |
2015-09-12 21:24:18 | eric.smith | set | recipients:
+ eric.smith, barry, python-dev, martin.panter, yselivanov, JelleZijlstra |
2015-09-12 21:24:18 | eric.smith | set | messageid: <1442093058.49.0.457087952341.issue24965@psf.upfronthosting.co.za> |
2015-09-12 21:24:18 | eric.smith | link | issue24965 messages |
2015-09-12 21:24:18 | eric.smith | create | |
|