[SciPy-dev] BUG: dot segfaults on float/complex arrays

Alan Isaac aisaac at american.edu
Fri Oct 14 12:03:50 EDT 2005


On Fri, 14 Oct 2005, Pearu Peterson wrote:

> Bug report: dot segfaults when applied to float or complex arrays. Integer
> arrays seem to be ok.

> In [1]: from scipy import *

> In [2]: dot(array([1.]),array([2]))
> Segmentation fault


Using scipy_core Windows binary, I don't see this.
Alan Isaac

Python 2.4.1 (#65, Mar 30 2005, 09:13:57) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import scipy as S
>>> S.dot(S.array([1.]),S.array([2]))
2.0
>>> S.__version__
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'module' object has no attribute '__version__'
>>>





More information about the SciPy-Dev mailing list