Skip to content

Commit 5406ecb

Browse files
committed
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#56480.
1 parent 6614c18 commit 5406ecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_curses_panel.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ static const char PyCursesVersion[] = "2.1";
1414

1515
#include "py_curses.h"
1616

17-
#include <panel.h>
17+
#include <ncurses/panel.h>
1818

1919
typedef struct {
2020
PyObject *PyCursesError;

0 commit comments

Comments
 (0)