On 1 October 2010 18:00, Vineet Jain <[email protected]> wrote: > Problem was a typo: > > cdef np.ndarray[np, ndim=1] outreal = numpy.zeros_like(inreal) > > should have been: > > cdef np.ndarray[np.float_t, ndim=1] outreal = numpy.zeros_like(inreal) > > Which caused the compiler to crash. >
OK, now all is clear. Anyway, Cython should not crash. We should fix this. -- Lisandro Dalcin --------------- CIMEC (INTEC/CONICET-UNL) Predio CONICET-Santa Fe Colectora RN 168 Km 472, Paraje El Pozo Tel: +54-342-4511594 (ext 1011) Tel/Fax: +54-342-4511169 _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
