From 00718304e9a01b5ee8b0a5cf4e7fa323ca85b032 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 6 Jun 2019 05:50:19 +0200 Subject: [PATCH] py3: Remove unused PyStr_Concat macro from py3compat.h Now that we are no longer developing new py2/py3 compatible code we can remove any aspects of this header we do not use. This will make the eventual removal easier. Signed-off-by: Andrew Bartlett --- python/py3compat.h | 1 - 1 file changed, 1 deletion(-) diff --git a/python/py3compat.h b/python/py3compat.h index e079db4987e..0b6cd013d1c 100644 --- a/python/py3compat.h +++ b/python/py3compat.h @@ -61,7 +61,6 @@ #define PyStr_FromFormat PyUnicode_FromFormat #define PyStr_FromFormatV PyUnicode_FromFormatV #define PyStr_AsString PyUnicode_AsUTF8 -#define PyStr_Concat PyUnicode_Concat #define PyStr_Format PyUnicode_Format #define PyStr_InternInPlace PyUnicode_InternInPlace #define PyStr_InternFromString PyUnicode_InternFromString -- 2.11.4.GIT