who to call a list of method inside the class itself

2008-08-19 Thread maduma
Hi, Is the following code is ok. who to call all method. It is working but the call to m() without a reference to self seems strange Thanks for your help class CustomMethod: def method1(self): def method2(self): def method3(self): def getAll

Re: who to call a list of method inside the class itself

2008-08-19 Thread maduma
On Aug 19, 4:33 pm, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Is the following code is ok. who to call all method. > > It is working but the call to m() without a reference to self seems > > strange > > > Thanks for your help > > > class CustomMethod: > > def metho

Re: who to call a list of method inside the class itself

2008-08-20 Thread maduma
On Aug 20, 8:14 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Tue, 19 Aug 2008 11:18:00 -0300, <[EMAIL PROTECTED]> escribi : > > > Is the following code is ok. who to call all method. > > It is working but the call to m() without a reference to self seems > > strange > > Ok, so you alread