mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
- 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
5 lines
186 B
Python
5 lines
186 B
Python
def f():
|
|
try:
|
|
pass
|
|
except <error descr="Parentheses are required when specifying a target for multiple exception classes">ValueError, TypeError</error> as e:
|
|
pass |