issues with making a package. where do classes link?

2006-12-11 Thread krishnakant Mane
hello all, I am struggling a bit in making python packages. when I am doing a project I want to create all my python modules inside a single package. I want to know when I make a package, what are the basic things I must generally do in the __init__.py file? and how do I link all the modules in my

Re: issues with making a package. where do classes link?

2006-12-11 Thread Gabriel Genellina
At Monday 11/12/2006 15:47, krishnakant Mane wrote: I am struggling a bit in making python packages. when I am doing a project I want to create all my python modules inside a single package. A package is a directory with an __init__.py file in it. That's the only thing needed. I want to kn