summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2021-11-25 01:01:40 (GMT)
committerGitHub <noreply@github.com>2021-11-25 01:01:40 (GMT)
commitc72311d91787005713bb5daf4532a86e06496afd (patch)
tree4c4129087bb0c8d4f6543170572df709848081c2 /Misc/NEWS.d
parentcd85d91bc66a587ce2ba668c897a5ecf118733cc (diff)
downloadcpython-c72311d91787005713bb5daf4532a86e06496afd.zip
cpython-c72311d91787005713bb5daf4532a86e06496afd.tar.gz
cpython-c72311d91787005713bb5daf4532a86e06496afd.tar.bz2
[3.10] bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if inside parentheses. (GH-29767)
Backport of GH-29757 Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-11-24-18-24-49.bpo-45727._xVbbo.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-11-24-18-24-49.bpo-45727._xVbbo.rst b/Misc/NEWS.d/next/Core and Builtins/2021-11-24-18-24-49.bpo-45727._xVbbo.rst
new file mode 100644
index 0000000..d4b149d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-11-24-18-24-49.bpo-45727._xVbbo.rst
@@ -0,0 +1,3 @@
+Refine the custom syntax error that suggests that a comma may be missing to
+trigger only when the expressions are detected between parentheses or
+brackets. Patch by Pablo Galindo