mirror of https://github.com/astral-sh/ruff
42 lines
515 B
Python
42 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:
|
|
...
|