class Test(object): pass t = Test() def test(self): print('ehlo') Test.test = test t.test()
No comments yet.