From 1721df193a64f77933dfcc5144ee2460fc5bbb83 Mon Sep 17 00:00:00 2001 From: stroeder Date: Sat, 18 Nov 2017 12:23:12 +0000 Subject: [PATCH] removed obsolete back-ward compability constants from common.h --- Modules/common.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Modules/common.h b/Modules/common.h index e29e20d..1ec232c 100644 --- a/Modules/common.h +++ b/Modules/common.h @@ -20,13 +20,6 @@ #include #endif -/* Backwards compability with Python prior 2.5 */ -#if PY_VERSION_HEX < 0x02050000 -typedef int Py_ssize_t; -#define PY_SSIZE_T_MAX INT_MAX -#define PY_SSIZE_T_MIN INT_MIN -#endif - #include #define streq( a, b ) \ ( (*(a)==*(b)) && 0==strcmp(a,b) )