From: Robert Bradshaw Date: Tue, 2 Nov 2010 17:24:24 +0000 (-0700) Subject: Unsigned PY_LONG_LONG. X-Git-Tag: 0.14.alpha0~256 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=86a3c4d74163b23734f65f460ec8a11d37f479ad;p=cython.git Unsigned PY_LONG_LONG. --- diff --git a/Cython/Includes/cpython/long.pxd b/Cython/Includes/cpython/long.pxd index 145ce8c6..4c5700cf 100644 --- a/Cython/Includes/cpython/long.pxd +++ b/Cython/Includes/cpython/long.pxd @@ -1,7 +1,7 @@ cdef extern from "Python.h": ctypedef long long PY_LONG_LONG - ctypedef unsigned long long uPY_LONG_LONG + ctypedef unsigned long long uPY_LONG_LONG "unsigned PY_LONG_LONG" ############################################################################ # 7.2.3 Long Integer Objects