Files
openide/python/testData/quickFixes/PyMakeMethodStaticQuickFixTest/functionWithDeco.py

10 lines
124 B
Python

__author__ = 'ktisha'
def foo(x):
return x
class A():
@my_deco
def my_<caret>method(self):
print "Smth"