summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-05-08 18:24:41 (GMT)
committerGitHub <noreply@github.com>2021-05-08 18:24:41 (GMT)
commit6692dc1ca99fb34a19d0a4b93cf8e10619490001 (patch)
treeb40089c354338ace9a5fcd3c9739288b20077ad4 /Doc
parent873275e64aae4caa6ddcea28ca3a026f37659d58 (diff)
downloadcpython-6692dc1ca99fb34a19d0a4b93cf8e10619490001.zip
cpython-6692dc1ca99fb34a19d0a4b93cf8e10619490001.tar.gz
cpython-6692dc1ca99fb34a19d0a4b93cf8e10619490001.tar.bz2
bpo-43149: Correct the syntax error message for multiple exception types (GH-25996)
Automerge-Triggered-By: GH:pablogsal
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.10.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index cfc560e..2c6569f 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -248,7 +248,7 @@ have been incorporated. Some of the most notable ones:
File "<stdin>", line 3
except NotEnoughScienceError, NotEnoughResourcesError:
^
- SyntaxError: exception group must be parenthesized
+ SyntaxError: multiple exception types must be parenthesized
(Contributed by Pablo Galindo in :issue:`43149`)