diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-05-08 18:24:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 18:24:41 (GMT) |
commit | 6692dc1ca99fb34a19d0a4b93cf8e10619490001 (patch) | |
tree | b40089c354338ace9a5fcd3c9739288b20077ad4 /Grammar/python.gram | |
parent | 873275e64aae4caa6ddcea28ca3a026f37659d58 (diff) | |
download | cpython-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 'Grammar/python.gram')
-rw-r--r-- | Grammar/python.gram | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/python.gram b/Grammar/python.gram index 2f553c6..6b815ab 100644 --- a/Grammar/python.gram +++ b/Grammar/python.gram @@ -956,7 +956,7 @@ invalid_try_stmt: RAISE_INDENTATION_ERROR("expected an indented block after 'try' statement on line %d", a->lineno) } invalid_except_stmt: | 'except' a=expression ',' expressions ['as' NAME ] ':' { - RAISE_SYNTAX_ERROR_STARTING_FROM(a, "exception group must be parenthesized") } + RAISE_SYNTAX_ERROR_STARTING_FROM(a, "multiple exception types must be parenthesized") } | a='except' expression ['as' NAME ] NEWLINE { RAISE_SYNTAX_ERROR("expected ':'") } | a='except' NEWLINE { RAISE_SYNTAX_ERROR("expected ':'") } invalid_finally_stmt: |