From 78ce65af00dd7d23a6ea12f73f737e5831f357aa Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Wed, 6 May 2009 19:27:25 +0200 Subject: [PATCH] #115 appears to be fixed too --- Cython/Includes/numpy.pxd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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. -- 2.26.2