From 86a3c4d74163b23734f65f460ec8a11d37f479ad Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Tue, 2 Nov 2010 10:24:24 -0700 Subject: [PATCH] Unsigned PY_LONG_LONG. --- Cython/Includes/cpython/long.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2