diff options
Diffstat (limited to 'src/util/sss_python.c')
-rw-r--r-- | src/util/sss_python.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/util/sss_python.c b/src/util/sss_python.c index 56850782a..ba78bf968 100644 --- a/src/util/sss_python.c +++ b/src/util/sss_python.c @@ -21,16 +21,6 @@ #include "src/util/sss_python.h" #include "config.h" -bool -sss_python_set_check(PyObject *set) -{ -#if HAVE_DECL_PYSET_CHECK - return PySet_Check(set); -#else - return PyObject_TypeCheck(set, &PySet_Type); -#endif -} - PyObject * sss_python_unicode_from_string(const char *u) { |