From 0d335cbd5c63009576280ff502b31a84e353a86b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 25 Nov 2021 14:19:22 +0100 Subject: [PATCH] Remove unneeded Python includes Inluding and has not been necessary since Python 2.4, since they are included via . Morever, is being removed in Python 3.11. So remove these includes. Reviewed-by: Tom Lane Discussion: https://www.postgresql.org/message-id/flat/84884.1637723223%40sss.pgh.pa.us --- src/pl/plpython/plpython.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pl/plpython/plpython.h b/src/pl/plpython/plpython.h index 3a1f0d56d7..209f604579 100644 --- a/src/pl/plpython/plpython.h +++ b/src/pl/plpython/plpython.h @@ -124,9 +124,6 @@ typedef int Py_ssize_t; #undef TEXTDOMAIN #define TEXTDOMAIN PG_TEXTDOMAIN("plpython") -#include -#include - /* put back our *printf macros ... this must match src/include/port.h */ #ifdef vsnprintf #undef vsnprintf