From: Dag Sverre Seljebotn Date: Wed, 6 May 2009 17:27:25 +0000 (+0200) Subject: #115 appears to be fixed too X-Git-Tag: 0.11.2.rc1~10^2~33 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=78ce65af00dd7d23a6ea12f73f737e5831f357aa;p=cython.git #115 appears to be fixed too --- diff --git a/Cython/Includes/numpy.pxd b/Cython/Includes/numpy.pxd index 298bb4e3..77ea6694 100644 --- a/Cython/Includes/numpy.pxd +++ b/Cython/Includes/numpy.pxd @@ -214,12 +214,12 @@ cdef extern from "numpy/arrayobject.h": float imag ctypedef struct npy_cdouble: - double real - double imag + float real + float imag ctypedef struct npy_clongdouble: - long double real - long double imag + float real + float imag # Typedefs that matches the runtime dtype objects in # the numpy module.