summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-03-24 19:34:17 (GMT)
committerGitHub <noreply@github.com>2021-03-24 19:34:17 (GMT)
commit8efad61963809d239cac986e3f3bc4cb505ab8fe (patch)
treec1d2c56b72ad7e1ee034f481570449267f73a85a /Misc
parent4958f5d69dd2bf86866c43491caf72f774ddec97 (diff)
downloadcpython-8efad61963809d239cac986e3f3bc4cb505ab8fe.zip
cpython-8efad61963809d239cac986e3f3bc4cb505ab8fe.tar.gz
cpython-8efad61963809d239cac986e3f3bc4cb505ab8fe.tar.bz2
bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25006)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-03-24-00-32-20.bpo-41064._H0K_g.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-24-00-32-20.bpo-41064._H0K_g.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-24-00-32-20.bpo-41064._H0K_g.rst
new file mode 100644
index 0000000..f6ea4d0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-03-24-00-32-20.bpo-41064._H0K_g.rst
@@ -0,0 +1,2 @@
+Improve the syntax error for invalid usage of double starred elements ('**')
+in f-strings. Patch by Pablo Galindo.