Files
openide/python/testData/refactoring/extractmethod/WhileOutput.before.py
T

7 lines
102 B
Python

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