From 2bb09776c0a4ef3b66ff1d7392756eb2879db2a6 Mon Sep 17 00:00:00 2001 From: William Stein Date: Fri, 3 Nov 2006 15:41:38 -0800 Subject: [PATCH] Had to also put the type code in for the signed case. --- 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 c3ea8343..34a63ce3 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -294,7 +294,7 @@ class CNumericType(CType): parsetuple_formats = ( # rank -> format "?HIkKn???", # unsigned - "chilL?fd?", # signed + "chilLnfd?", # signed ) def __init__(self, rank, signed = 1, pymemberdef_typecode = None): -- 2.26.2