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

11 lines
131 B
Python

__author__ = 'ktisha'
def foo(x):
return x
class A():
@staticmethod
@my_deco
def my_method():
print "Smth"