Skip to content

Commit f930a24

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 continues on gh#python#56480. Patch: python-3.3.0b1-curses-panel.patch
1 parent a4fff8a commit f930a24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_curses_panel.c

Lines changed: 1 addition & 1 deletion
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)