Commit 9d91a4ea authored by Stefan Behnel's avatar Stefan Behnel

Py2.4 test fix

parent 92535fea
......@@ -4,11 +4,10 @@
cdef extern from *:
int INT_MAX
long LONG_MAX
long long PY_LLONG_MAX
max_int = INT_MAX
max_long = LONG_MAX
max_long_long = PY_LLONG_MAX
max_long_long = 2 ** (sizeof(long long) * 8 - 1) - 1
cimport cython
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment