From 5a02a703d8d4153919b2667f2ae03024488f5cd9 Mon Sep 17 00:00:00 2001 From: William Stein Date: Fri, 3 Nov 2006 15:34:39 -0800 Subject: [PATCH] Added support for automatic conversion of input types to Py_ssize_t. --- 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 09513fb7..c3ea8343 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -293,7 +293,7 @@ class CNumericType(CType): default_value = "0" parsetuple_formats = ( # rank -> format - "?HIkK????", # unsigned + "?HIkKn???", # unsigned "chilL?fd?", # signed ) -- 2.26.2