Files
openide/python/testData/intentions/exceptPartAddMissingParentheses.py
Marcus Mews dcb6914323 PY-84077 - Support PEP 758 – Allow except and except* expressions without parentheses
- adjust parser to support comma separated list of error classes
- add problem annotation and quick fix for missing parentheses
- add new tests, adjust old tests

GitOrigin-RevId: 545f3597a488f85ba2ff17da0a389f2aed226406
2025-09-15 12:58:49 +00:00

4 lines
63 B
Python

try:
pass
except ImportError,<caret> AccessError as e:
pass