commit 4339e10f090ec6b5ceb727c00e7a345cc9178e1e
Author: Peter Eisentraut <peter@eisentraut.org>
Date:   Thu Nov 25 14:19:22 2021 +0100

    Remove unneeded Python includes
    
    Inluding <compile.h> and <eval.h> has not been necessary since Python
    2.4, since they are included via <Python.h>.  Morever, <eval.h> is
    being removed in Python 3.11.  So remove these includes.
    
    Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
    Discussion: https://www.postgresql.org/message-id/flat/84884.1637723223%40sss.pgh.pa.us

--- a/src/pl/plpython/plpython.c
+++ b/src/pl/plpython/plpython.c
@@ -115,9 +115,6 @@ typedef int Py_ssize_t;
 #undef TEXTDOMAIN
 #define TEXTDOMAIN PG_TEXTDOMAIN("plpython")
 
-#include <compile.h>
-#include <eval.h>
-
 PG_MODULE_MAGIC;
 
 /* convert Postgresql Datum or tuple into a PyObject.
