Skip to content

Commit

Permalink
fix wrong include path in curses-panel module
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mcepl committed Apr 3, 2024
1 parent 6614c18 commit 5406ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_curses_panel.c
Expand Up @@ -14,7 +14,7 @@ static const char PyCursesVersion[] = "2.1";

#include "py_curses.h"

#include <panel.h>
#include <ncurses/panel.h>

typedef struct {
PyObject *PyCursesError;
Expand Down

0 comments on commit 5406ecb

Please sign in to comment.