diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-18 14:44:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 14:44:13 (GMT) |
commit | 2401b980da571cac49c804edb66696766c4cd9c0 (patch) | |
tree | 577811e52835fc9c662694150ceea4d764c917cd /Misc | |
parent | f6fc831aa96f82b74c8dae9a20dc88c89e457967 (diff) | |
download | cpython-2401b980da571cac49c804edb66696766c4cd9c0.zip cpython-2401b980da571cac49c804edb66696766c4cd9c0.tar.gz cpython-2401b980da571cac49c804edb66696766c4cd9c0.tar.bz2 |
[3.12] gh-108843: fix ast.unparse for f-string with many quotes (GH-108981) (#109541)
gh-108843: fix ast.unparse for f-string with many quotes (GH-108981)
(cherry picked from commit 23f9f6f46454455bc6015e83ae5b5e946dae7698)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-09-06-06-17-23.gh-issue-108843.WJMhsS.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-06-06-17-23.gh-issue-108843.WJMhsS.rst b/Misc/NEWS.d/next/Library/2023-09-06-06-17-23.gh-issue-108843.WJMhsS.rst new file mode 100644 index 0000000..0f15761 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-09-06-06-17-23.gh-issue-108843.WJMhsS.rst @@ -0,0 +1 @@ +Fix an issue in :func:`ast.unparse` when unparsing f-strings containing many quote types. |