summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-01 15:45:59 (GMT)
committerGitHub <noreply@github.com>2020-09-01 15:45:59 (GMT)
commitc16a2a1b643d3e04f86780e2c9e66c3f9f322560 (patch)
tree8d707bcefac61faf87fd7fd23a998c86421dba20 /Misc
parentca55ecbf9aab305fa301ec69410ca3d3d18ec848 (diff)
downloadcpython-c16a2a1b643d3e04f86780e2c9e66c3f9f322560.zip
cpython-c16a2a1b643d3e04f86780e2c9e66c3f9f322560.tar.gz
cpython-c16a2a1b643d3e04f86780e2c9e66c3f9f322560.tar.bz2
bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` in format specifier (GH-22036) (GH-22041)
* Fixed `f-string/str.format` error description when using two `,` in format specifier. Co-authored-by: millefalcon <hanish0019@hmail.com> (cherry picked from commit 0d6aa7f0ee38eb453bc8f73bf4830e6172be2f35) Co-authored-by: han-solo <hanish0019@gmail.com> Co-authored-by: han-solo <hanish0019@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-08-31-17-49-02.bpo-41681.3-VJiH.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-08-31-17-49-02.bpo-41681.3-VJiH.rst b/Misc/NEWS.d/next/Core and Builtins/2020-08-31-17-49-02.bpo-41681.3-VJiH.rst
new file mode 100644
index 0000000..ed557f9
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-08-31-17-49-02.bpo-41681.3-VJiH.rst
@@ -0,0 +1,2 @@
+Fixes the wrong error description in the error raised by using 2 `,` in
+format string in f-string and :meth:`str.format`.