mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
10 lines
135 B
Python
10 lines
135 B
Python
try:
|
|
import b
|
|
except ImportError:
|
|
b = Ellipsis
|
|
from bb import a
|
|
else:
|
|
from aa import a
|
|
finally:
|
|
a = 42
|
|
print(a, b)
|