From: William Stein Date: Fri, 3 Nov 2006 23:41:38 +0000 (-0800) Subject: Had to also put the type code in for the signed case. X-Git-Tag: 0.9.6.14~29^2~208 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2bb09776c0a4ef3b66ff1d7392756eb2879db2a6;p=cython.git Had to also put the type code in for the signed case. --- 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):