mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
41 lines
515 B
Python
41 lines
515 B
Python
def func():
|
|
try:
|
|
...
|
|
except Exception:
|
|
...
|
|
except OtherException as e:
|
|
...
|
|
else:
|
|
...
|
|
finally:
|
|
...
|
|
|
|
def func():
|
|
try:
|
|
...
|
|
except Exception:
|
|
...
|
|
|
|
def func():
|
|
try:
|
|
...
|
|
except Exception:
|
|
...
|
|
except OtherException as e:
|
|
...
|
|
|
|
def func():
|
|
try:
|
|
...
|
|
except Exception:
|
|
...
|
|
except OtherException as e:
|
|
...
|
|
else:
|
|
...
|
|
|
|
def func():
|
|
try:
|
|
...
|
|
finally:
|
|
...
|