From 4e2edee6846902d7fd88e93b6602279ddde459ec Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Fri, 16 Oct 2009 12:09:32 +0200 Subject: [PATCH] Fix complex number utitity code order (sometimes they would come out in wrong order) --- Cython/Compiler/PyrexTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 09ac13d2..677420f0 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -1004,7 +1004,7 @@ proto=""" """) complex_from_parts_utility_code = UtilityCode( -proto_block='utility_code_proto_before_types', +proto_block='utility_code_proto', proto=""" #if CYTHON_CCOMPLEX #ifdef __cplusplus -- 2.26.2