mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
- add incompatibility inspections, quickfix, tests - improve quickfix for adding parentheses - add AST tests for PY-84077 GitOrigin-RevId: 2d09a06d4d0b5ae106f556808900573c50f41800
5 lines
71 B
Python
5 lines
71 B
Python
try:
|
|
f = open('myfile.txt')
|
|
except (IOError, OtherError):
|
|
pass
|