Re: [Tutor] Calling a function within a function within a class...

2007-11-10 Thread Alan Gauld
"Trey Keown" <[EMAIL PROTECTED]> wrote > I'm creating a module for my program, and I need to call a function. > Here's how it's set up: > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > class DoStuff: >def Thing1(self): >def ThingToCall(self): >print "It worke

Re: [Tutor] Calling a function within a function within a class...

2007-11-09 Thread Eric Brunson
Trey Keown wrote: > Hey all... > I'm creating a module for my program, and I need to call a function. > Here's how it's set up: > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > class DoStuff: > def Thing1(self): > def ThingToCall(self): > print "It worked!" >

[Tutor] Calling a function within a function within a class...

2007-11-09 Thread Trey Keown
Hey all... I'm creating a module for my program, and I need to call a function. Here's how it's set up: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- class DoStuff: def Thing1(self): def ThingToCall(self): print "It worked!" def Thing2(self): #Call