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

minor Py hex version fix for patch level when Py_hash_t was added (just in...

minor Py hex version fix for patch level when Py_hash_t was added (just in case someone still uses Py3.2 alpha versions)
parent 3eb43d07
......@@ -240,7 +240,7 @@
#define PyBoolObject PyLongObject
#endif
#if PY_VERSION_HEX < 0x03020000
#if PY_VERSION_HEX < 0x030200A4
typedef long Py_hash_t;
#define __Pyx_PyInt_FromHash_t PyInt_FromLong
#define __Pyx_PyInt_AsHash_t PyInt_AsLong
......
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