mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +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 |