Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
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.