summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTomas R. <tomas.roun8@gmail.com>2024-10-06 13:16:41 (GMT)
committerGitHub <noreply@github.com>2024-10-06 13:16:41 (GMT)
commitdb23b8bb13863fcd88ff91bc22398f8e0312039e (patch)
tree249ab119c5555e2fc487882f37969cca96a9e7d1 /Misc
parent39c859f6ffd8dee7f48b2181c6cb59cffe8125ff (diff)
downloadcpython-db23b8bb13863fcd88ff91bc22398f8e0312039e.zip
cpython-db23b8bb13863fcd88ff91bc22398f8e0312039e.tar.gz
cpython-db23b8bb13863fcd88ff91bc22398f8e0312039e.tar.bz2
gh-125008: Fix `tokenize.untokenize` roundtrip for `\n{{` (#125013)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-10-05-23-53-06.gh-issue-125008.ETANpd.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-10-05-23-53-06.gh-issue-125008.ETANpd.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-10-05-23-53-06.gh-issue-125008.ETANpd.rst
new file mode 100644
index 0000000..8971e05
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-10-05-23-53-06.gh-issue-125008.ETANpd.rst
@@ -0,0 +1,2 @@
+Fix :func:`tokenize.untokenize` producing invalid syntax for
+double braces preceded by certain escape characters.