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
/
before
/
main.py
1
from sys import path
2
3
CONST = 42
4
5
6
class MyClass:
7
pass
8
9
10
def f():
11
def <caret>g():
12
f()
13
print(MyClass())
14
print(path)
15
print(CONST)