# Bug report Right now this test passes: ```python def test_pep758_except_without_parens(self): code = textwrap.dedent(""" try: ... except ValueError, TypeError: ... """) ast.parse(code, feature_version=(3, 14)) with self.assertRaises(SyntaxError): ast.parse(code, feature_version=(3, 13)) ``` But, it should not pass. I have a PR ready. <!-- gh-linked-prs --> ### Linked PRs * gh-133195 * gh-133289 <!-- /gh-linked-prs -->
Bug report
Right now this test passes:
But, it should not pass. I have a PR ready.
Linked PRs
CHECK_VERSIONto new PEP758 grammar #133195feature_version#133289