Bug report
Right now this test passes:
deftest_pep758_except_without_parens(self): code=textwrap.dedent(""" try: ... except ValueError, TypeError: ... """) ast.parse(code, feature_version=(3, 14)) withself.assertRaises(SyntaxError): ast.parse(code, feature_version=(3, 13))But, it should not pass. I have a PR ready.
Linked PRs