Re: Basic class implementation question

2008-04-01 Thread Henry Chang
You might want to consult this. http://www.ibiblio.org/g2swap/byteofpython/read/object-methods.html On Tue, Apr 1, 2008 at 9:43 PM, <[EMAIL PROTECTED]> wrote: > I can't get call a class for some reason. This must be one of those > newbie questions I hear so much about: > > class wontwork: >

Re: Basic class implementation question

2008-04-01 Thread Henry Chang
Try this. class wontwork: def really(self): print "Hello World" wontwork().really() On Tue, Apr 1, 2008 at 9:43 PM, <[EMAIL PROTECTED]> wrote: > I can't get call a class for some reason. This must be one of those > newbie questions I hear so much about: > > class wontwo