summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-09-18 14:44:13 (GMT)
committerGitHub <noreply@github.com>2023-09-18 14:44:13 (GMT)
commit2401b980da571cac49c804edb66696766c4cd9c0 (patch)
tree577811e52835fc9c662694150ceea4d764c917cd /Misc
parentf6fc831aa96f82b74c8dae9a20dc88c89e457967 (diff)
downloadcpython-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.rst1
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.