diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2017-08-25 22:46:13 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2017-08-25 22:55:38 +0200 |
commit | be8e9ced88a366228b41a64045e9cbfa8fa51928 (patch) | |
tree | 0840523177ef73c0fce91a94b6f140c4112c4705 /Cython/Utility/ModuleSetupCode.c | |
parent | 51cc426a21001c7d6e5e09fed1bfc9951ea86dcb (diff) | |
download | cython-be8e9ced88a366228b41a64045e9cbfa8fa51928.tar.gz |
Remove support and special handling code for Py3.2.
Diffstat (limited to 'Cython/Utility/ModuleSetupCode.c')
-rw-r--r-- | Cython/Utility/ModuleSetupCode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/ModuleSetupCode.c b/Cython/Utility/ModuleSetupCode.c index 8e251672a..5c13a3b92 100644 --- a/Cython/Utility/ModuleSetupCode.c +++ b/Cython/Utility/ModuleSetupCode.c @@ -29,7 +29,7 @@ #ifndef HAVE_LONG_LONG // CPython has required PY_LONG_LONG support for years, even if HAVE_LONG_LONG is not defined for us - #if PY_VERSION_HEX >= 0x03030000 || (PY_MAJOR_VERSION == 2 && PY_VERSION_HEX >= 0x02070000) + #if PY_VERSION_HEX >= 0x02070000 #define HAVE_LONG_LONG #endif #endif |