From 5406ecba55a2b5e12c4e71c7122d9940e8d76fac 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 continue on gh#python/cpython#56480. --- 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;