From d6c3de740c7bed8b007805d6a313220d8d974ee5 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Mon, 9 Feb 2015 19:16:30 +0100 Subject: BUILD: Remove detection of type Py_ssize_t The type Py_ssize_t is defined in python >= 2.6 Reviewed-by: Stephen Gallagher --- src/util/sss_python.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/util/sss_python.h') diff --git a/src/util/sss_python.h b/src/util/sss_python.h index 828bd22ec..cf8c84848 100644 --- a/src/util/sss_python.h +++ b/src/util/sss_python.h @@ -25,20 +25,6 @@ #define PYNUMBER_ASLONG(what) PyInt_AsLong(what) #endif -/* Py_ssize_t compatibility for python < 2.5 as per - * http://www.python.org/dev/peps/pep-0353/ */ -#ifndef HAVE_PY_SSIZE_T -typedef int Py_ssize_t; -#endif - -#ifndef PY_SSIZE_T_MAX -#define PY_SSIZE_T_MAX INT_MAX -#endif - -#ifndef PY_SSIZE_T_MIN -#define PY_SSIZE_T_MIN INT_MIN -#endif - /* Wrappers providing the subset of C API for python's set objects we use */ PyObject *sss_python_set_new(void); int sss_python_set_add(PyObject *set, PyObject *key); -- cgit