Re: [Tutor] creation of a module

2005-05-17 Thread Cedric BRINER
Hi Alan > Hi Cedric, > > Reading through this I can't help but think you are going to > a lot of trouble to make things very complicated for yourself > - and for anyone else who has to work on your code. The > Python module system is very simple and helpful in tracking > down where the various thi

Re: [Tutor] creation of a module

2005-05-13 Thread Cedric BRINER
> > hi, > > > > 1) > > I'm trying to create my _first_ own module. I've decided to write each > > class into a separate file. OB> > > > /MyModule|-bunch.py > > |-a.py > > |-b.py > > `-c.py > > You also need MyModule/__init__.py to signal to Python that MymModule is a

Re: [Tutor] creation of a module

2005-05-13 Thread Kent Johnson
Cedric BRINER wrote: > hi, > > 1) > I'm trying to create my _first_ own module. I've decided to write each class > into a separate file. > > /MyModule|-bunch.py > |-a.py > |-b.py > `-c.py You also need MyModule/__init__.py to signal to Python that MymModule is a pack