Files
openide/python/testData/findUsages/WrappedMethod.py
2012-01-12 13:33:03 +01:00

15 lines
296 B
Python

class TestClass:
def __init__(self):
MyClass.testMethod("Hello World")
class MyClass:
#@staticmethod
def te<caret>stMethod(text):
print (text)
testMethod = staticmethod(testMethod)
if __name__ == '__main__':
TestClass()