DR
Size: a a a
DR
DR
DR
>>> class C:
... def f(self):
... print "hi"
...
>>> C.f()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unbound method f() must be called with C instance as
first argument (got nothing instead)
DR
DR
c = C()
c.f()
Т.е создать экземпляр классаDR
C().f()
DR
myplugin_t123().run()
DR
DR
i