projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2157cb
)
ssize_t in Cython now means Py_ssize_t in C ((ticket #399))
author
Lisandro Dalcin
<dalcinl@gmail.com>
Fri, 30 Apr 2010 18:35:39 +0000
(15:35 -0300)
committer
Lisandro Dalcin
<dalcinl@gmail.com>
Fri, 30 Apr 2010 18:35:39 +0000
(15:35 -0300)
Cython/Compiler/PyrexTypes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/PyrexTypes.py
b/Cython/Compiler/PyrexTypes.py
index e21e2558623d612167ffa6da655ca97bb0e1a600..3a1424eb8d39ad7cf9267e5788c7b1e68a780112 100755
(executable)
--- 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):