Hi, I have a Python directory in site-packages called "foo". I do:
sage: from foo.all import *
Now, foo.all imports several things from the "foo" directory,
including a .so module. It contains lines like:
from buzz import *
from bazz import *
from bar import *
Now, all the objects imported have types like
foo.buzz.Blob
foo.bazz.Thing
etc....
Except for the .so module, bar.so, whose objects have types like
bar.Bar
Now, I'd really like this to be
foo.bar.Bar
Is this possible? Why does 'bar.Bar' always get put in the top-level
of the name space?
Thanks,
Emil
--
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org