mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
It's necessary for the rare case when the same definition, module or package is imported multiple times with different aliases or both with and without alias.
5 lines
86 B
Python
5 lines
86 B
Python
from foo import bar, bar as c
|
|
from foo import bar as a, bar as b
|
|
|
|
print(bar, a, b, c)
|