Files
openide/python/testData/refactoring/inlineFunction/importedLocally/main.py
T
2019-07-08 18:05:36 +03:00

9 lines
102 B
Python

from src import foo
res = foo(1, 2)
def bar():
from src import foo
res1 = fo<caret>o(1, 2)