From: Stefan Behnel Date: Sun, 20 Jul 2008 15:54:13 +0000 (+0200) Subject: removed Py_ssize_t from python2.5.pxd as it's a builtin type anyway X-Git-Tag: 0.9.8.1~115 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=80c100a5966cc39e5b21edef94439ea91f8ead29;p=cython.git removed Py_ssize_t from python2.5.pxd as it's a builtin type anyway --- diff --git a/Includes/python2.5.pxd b/Includes/python2.5.pxd index 502601fb..f478a5d5 100644 --- a/Includes/python2.5.pxd +++ b/Includes/python2.5.pxd @@ -16,7 +16,6 @@ cdef extern from "sys/types.h": ctypedef unsigned int size_t - ctypedef int ssize_t cdef extern from "stdio.h": ctypedef struct FILE: @@ -26,7 +25,6 @@ cdef extern from "Python.h": # XXX: This is platform dependent. ctypedef unsigned short Py_UNICODE - ctypedef ssize_t Py_ssize_t ctypedef struct PyTypeObject: pass