mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
16 lines
147 B
Python
16 lines
147 B
Python
try:
|
|
1 / 0
|
|
except ValueError as e:
|
|
pass
|
|
|
|
|
|
try:
|
|
1 / 0
|
|
except ValueError as e:
|
|
print(e)
|
|
|
|
|
|
def f():
|
|
x = 1
|
|
y = 2
|
|
z = x + y
|