| 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
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.