mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 04:09:09 +07:00
8 lines
121 B
Python
8 lines
121 B
Python
from src1 import bar as bar1
|
|
from src2 import bar # foo uses different bar
|
|
|
|
|
|
unrelated = bar(1)
|
|
|
|
y = bar1(2)
|
|
res = 2 + y |