On Aug 6, 12:19 am, Ben Finney <[EMAIL PROTECTED]>
wrote:
> [EMAIL PROTECTED] writes:
> > (In addition, it probably would make the program somewhat slower to
> > have an internal class inside every module, and performance is
> > important to me, as I'm planning to use this project in a future
> > g
Thanks to everybody for replying. (I apologize for the delayed
response: my connection's been down for a week.)
Yes, I'm importing * for a reason, a good one, I think. I have a set
of modules (the number planned to reach about 400) that would be
dynamically loaded by my program as needed, and they
Hi, I'm a newbie at Python. :) Right now it's not letting me import *
from any relative package name--i.e., a name that starts with a dot.
For instance, none of the following work:
from . import *
from .sibiling import *
from .. import *
from ..parent_sibling import *
...and so on