projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PY-17265 Add missing test on handling imports for moved local function
[idea/community.git]
/
python
/
testData
/
refactoring
/
makeFunctionTopLevel
/
localFunctionMoveToOtherFile
/
after
/
util.py
1
from sys import path
2
3
from main import f, MyClass, CONST
4
5
6
def g():
7
f()
8
print(MyClass())
9
print(path)
10
print(CONST)