From f930a24479cc46e5d7294a1a82bc3a3b6f0d75a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Wed, 3 Apr 2024 10:42:41 +0200 Subject: [PATCH] fix wrong include path in curses-panel module Unfortunately Python 3.6 doesn't include all autoconfig infrastructure required for the upstream solution, so we have to directly patch Modules/_curses_panel.c Discussion still continues on gh#python/cpython#56480. Patch: python-3.3.0b1-curses-panel.patch --- Modules/_curses_panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_curses_panel.c b/Modules/_curses_panel.c index 18ef335b828c525..a922d12d93c3034 100644 --- a/Modules/_curses_panel.c +++ b/Modules/_curses_panel.c @@ -14,7 +14,7 @@ static const char PyCursesVersion[] = "2.1"; #include "py_curses.h" -#include +#include typedef struct { PyObject *PyCursesError;