From: William Stein Date: Fri, 3 Nov 2006 23:34:39 +0000 (-0800) Subject: Added support for automatic conversion of input types to Py_ssize_t. X-Git-Tag: 0.9.6.14~29^2~210 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5a02a703d8d4153919b2667f2ae03024488f5cd9;p=cython.git Added support for automatic conversion of input types to Py_ssize_t. --- 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 )