From 196984292fd330d257c476a8a8c45fd68833809e Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Fri, 30 Apr 2010 15:35:39 -0300 Subject: [PATCH] ssize_t in Cython now means Py_ssize_t in C ((ticket #399)) --- 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 e21e2558..3a1424eb 100755 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -950,7 +950,7 @@ class CSSizeTType(CIntType): from_py_function = "PyInt_AsSsize_t" def sign_and_name(self): - return "ssize_t" + return "Py_ssize_t" class CSizeTType(CIntType): -- 2.26.2