Re: Class Not Auto-Init On Import

2007-04-22 Thread Steve Holden
Dennis Lee Bieber wrote: > On Sat, 21 Apr 2007 11:56:05 -0400, Steve Holden <[EMAIL PROTECTED]> > declaimed the following in comp.lang.python: > >> Robert Rawlins - Think Blue wrote: > >>> LocationService.setIP(‘192.168.1.1’) >>> >> This isn't a call on a specific LocationService instance, it's a

Re: Class Not Auto-Init On Import

2007-04-21 Thread Steve Holden
Robert Rawlins - Think Blue wrote: > Hello Guys, > > > > From my understanding of what I’ve read, the ‘import’ is meant to auto > Init my class ready for me to access its methods, but it doesn’t appear > too, I’m having to init them myself before I can access them, like this. > Importing a

Re: Class Not Auto-Init On Import

2007-04-21 Thread Gabriel Genellina
En Sat, 21 Apr 2007 05:46:07 -0300, Robert Rawlins - Think Blue <[EMAIL PROTECTED]> escribió: >> From my understanding of what I've read, the 'import' is meant to auto >> Init > my class ready for me to access its methods, but it doesn't appear too, > I'm > having to init them myself before

Re: Class Not Auto-Init On Import

2007-04-21 Thread Parthan SR
On 4/21/07, Robert Rawlins - Think Blue <[EMAIL PROTECTED]> wrote: Hello Guys, From my understanding of what I've read, the 'import' is meant to auto Init my class ready for me to access its methods, but it doesn't appear too, I'm having to init them myself before I can access them, like this.

Class Not Auto-Init On Import

2007-04-21 Thread Robert Rawlins - Think Blue
Hello Guys, >From my understanding of what I've read, the 'import' is meant to auto Init my class ready for me to access its methods, but it doesn't appear too, I'm having to init them myself before I can access them, like this. import LocationService Location = LocationService.Location