diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-02-03 23:29:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 23:29:26 (GMT) |
commit | d4e6ed7e5fb43320ea714d7436bc11667c624d43 (patch) | |
tree | 1b7139c3a92eb9de5b91e61b5d5a7e92bed07bd7 /Misc/NEWS.d | |
parent | bfe544d2f2c2e7a7c03a764bed3276a1e27a0f5c (diff) | |
download | cpython-d4e6ed7e5fb43320ea714d7436bc11667c624d43.zip cpython-d4e6ed7e5fb43320ea714d7436bc11667c624d43.tar.gz cpython-d4e6ed7e5fb43320ea714d7436bc11667c624d43.tar.bz2 |
bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-02-03-22-33-05.bpo-43121.jqcViq.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-02-03-22-33-05.bpo-43121.jqcViq.rst b/Misc/NEWS.d/next/Core and Builtins/2021-02-03-22-33-05.bpo-43121.jqcViq.rst new file mode 100644 index 0000000..5030bda --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-02-03-22-33-05.bpo-43121.jqcViq.rst @@ -0,0 +1,2 @@ +Fixed an incorrect :exc:`SyntaxError` message for missing comma in literals. +Patch by Pablo Galindo. |