Files
openide/python/testData/refactoring/extractmethod/CommentsPrecedingSourceStatement.after.py

10 lines
98 B
Python

x = 42
# print('commented')
def func():
return x ** 2
# comment 1
# comment 2
print(func())