mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
7 lines
127 B
Python
7 lines
127 B
Python
class SM(object):
|
|
def my_method(): pass
|
|
my_method = staticmethod(my_method)
|
|
|
|
def q(self):
|
|
self.my_method()
|