From d21ceeedfff9850acf850ca0950b82dfc06137e2 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 14 May 2009 12:36:52 -0700 Subject: [PATCH] Don't assume complex.h by default. --- tests/run/complex_numbers_T305.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run/complex_numbers_T305.pyx b/tests/run/complex_numbers_T305.pyx index 6f20aa70..5d839b44 100644 --- a/tests/run/complex_numbers_T305.pyx +++ b/tests/run/complex_numbers_T305.pyx @@ -58,8 +58,8 @@ __doc__ = u""" (1.5-3.5j) """ -cdef extern from "complex.h": - pass +#cdef extern from "complex.h": +# pass cimport cython -- 2.26.2