This is on an AMD64 platform:
Python 2.4.3 (#1, Sep 27 2006, 14:14:48)
[GCC 4.1.1 (Gentoo 4.1.1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> print numpy.__version__
1.0rc2
>>> a = numpy.float64(1.0)
>>> a
1.0
>>> a.real
1.0
>>> a.imag
Segmentation fault
Thanks!
Peter
|