[SciPy-dev] scipy new core, build remarks
Pearu Peterson
pearu at scipy.org
Fri Oct 14 03:52:32 CDT 2005
On Fri, 14 Oct 2005, Arnd Baecker wrote:
> "Old" scipy:
>
> In [1]:import scipy
> In [2]:scipy.special.j0(10)
> Out[2]:-0.24593576445134832
>
> New scipy:
>
> In [1]:import scipy
> In [2]: scipy.special.j0(10)
> ---------------------------------------------------------------------------
> exceptions.AttributeError Traceback (most recent call last)
> AttributeError: 'module' object has no attribute 'special'
>
> Instead one has to do:
>
> In [3]: import scipy.special
> In [4]: scipy.special.j0(10)
> Out[4]: -0.24593576445134829
>
> Is it planned (would it be possible?) that the"old" way works as well?
Yes! I am working on it at the moment.
Pearu
More information about the Scipy-dev
mailing list