diff options
author | Anthony Shaw <anthony.p.shaw@gmail.com> | 2023-09-05 20:01:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 20:01:23 (GMT) |
commit | 2c4c26c4ce4bb94200ff3c9b5a0f4c75eed96f31 (patch) | |
tree | e4a529b5474595651ee8a002952ccb542c533e65 /Misc/NEWS.d/next | |
parent | 9bf350b0662fcf1a8b43b9293e6c8ecf3c711561 (diff) | |
download | cpython-2c4c26c4ce4bb94200ff3c9b5a0f4c75eed96f31.zip cpython-2c4c26c4ce4bb94200ff3c9b5a0f4c75eed96f31.tar.gz cpython-2c4c26c4ce4bb94200ff3c9b5a0f4c75eed96f31.tar.bz2 |
gh-108469: Update ast.unparse for unescaped quote support from PEP701 [3.12] (#108553)
Co-authored-by: sunmy2019 <59365878+sunmy2019@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-09-03-04-37-52.gh-issue-108469.kusj40.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-03-04-37-52.gh-issue-108469.kusj40.rst b/Misc/NEWS.d/next/Library/2023-09-03-04-37-52.gh-issue-108469.kusj40.rst new file mode 100644 index 0000000..ac0f682 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-09-03-04-37-52.gh-issue-108469.kusj40.rst @@ -0,0 +1,3 @@ +:func:`ast.unparse` now supports new :term:`f-string` syntax introduced in +Python 3.12. Note that the :term:`f-string` quotes are reselected for simplicity +under the new syntax. (Patch by Steven Sun) |