Files
openide/python/testData/refactoring/extractmethod/DuplicateMultiLine.after.py
T
Mikhail Golubev 45cc683033 PY-10829 Extracted function is inserted *after* the function where it is used
I updated test data accordingly and removed now obsolete tests about
skipping preceding comments.
2015-04-02 20:08:32 +03:00

9 lines
66 B
Python

def bar():
foo()
foo()
def foo():
a = 1
print a