mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
296 B
Python
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()
|