Azt hittem ez csak docstring. Sajnos ez viszont pl. nem mukodik vele: #!/usr/bin/python class Test: def test1(self): print "test1" ''' def test2(self): print 1 ''' def test3(self): print "test3" t = Test() t.test1() t.test3() /sza2