Re: Newbie - instanciating classes from other files

2005-09-15 Thread Peter Hansen
[EMAIL PROTECTED] wrote: > Hey guys, i just started learning python (i usually use java/C). > > this has got me stumped as its not mentioned in the documentation > (unless im skimming it every time). > > How does one instanciate a class from another file > > i thought it would be > -

Re: Newbie - instanciating classes from other files

2005-09-14 Thread Devan L
[EMAIL PROTECTED] wrote: > Hey guys, i just started learning python (i usually use java/C). > > this has got me stumped as its not mentioned in the documentation > (unless im skimming it every time). > > How does one instanciate a class from another file import somefile foo = somefile.class(__ini

Re: Newbie - instanciating classes from other files

2005-09-14 Thread Jorge Godoy
[EMAIL PROTECTED] writes: > Hey guys, i just started learning python (i usually use java/C). > > this has got me stumped as its not mentioned in the documentation > (unless im skimming it every time). > > How does one instanciate a class from another file > > i thought it would be > ---

Newbie - instanciating classes from other files

2005-09-14 Thread comanighttrain
Hey guys, i just started learning python (i usually use java/C). this has got me stumped as its not mentioned in the documentation (unless im skimming it every time). How does one instanciate a class from another file i thought it would be ---code-