From: Lisandro Dalcin Date: Fri, 30 Apr 2010 18:35:39 +0000 (-0300) Subject: ssize_t in Cython now means Py_ssize_t in C ((ticket #399)) X-Git-Tag: 0.13.beta0~124 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=196984292fd330d257c476a8a8c45fd68833809e;p=cython.git ssize_t in Cython now means Py_ssize_t in C ((ticket #399)) --- 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):