blob: b2fcc30bda0118e739eced5166bf3fea99b6afec [file] [log] [blame]
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()