Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The following should work:

sage: from scipy.weave import converters

Note that this is different from

sage: from scipy import weave
sage: from weave import converters

which gives the ImportError. The weave in from weave import converters does not refer to the module imported in from scipy import weave. Look at the following example:

sage: import scipy.weave as w2
sage: from w2 import converters
Traceback (most recent call last)
...
ImportError: No module named w2