Files
openide/python/testData/refactoring/extractmethod/WhileOutput.before.py
2012-05-22 22:23:35 +04:00

7 lines
102 B
Python

def f():
a = 1
while a < 10:
<selection>do_smth
a+=1</selection>
print(a)