[SciPy-dev] io errors

Travis N. Vaught travis at enthought.com
Thu Sep 22 20:36:59 EDT 2005


Greetings,
I built scipy from svn source (first a bdist_wininst, then running the 
created setup_...exe) for python 2.4. 

Tests all seem to pass except the io package tests...reduced a bit, the 
following session causes a seg-fault in Windows XP:

 >>> from scipy.io import numpyio
 >>> import os, sys
 >>> import Numeric
 >>> import tempfile
 >>> from scipy import rand
 >>> a = 255*rand(20)
 >>> fname = tempfile.mktemp('.dat')
 >>> fid = open(fname,"wb")
 >>> numpyio.fwrite(fid, 20, a, Numeric.Int16)

<<seg fault>>

Environment:

Python 2.4.1 (#65, Mar 30 2005, 09:13:57)

 >>> scipy.__version__
'0.3.3_303.4573'

 >>> Numeric.__version__
'23.8'

 >>> f2py2e.__version__.version
'2.45.241_1926'

Travis




More information about the SciPy-Dev mailing list