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 continues on gh#python#56480.

Patch: python-3.3.0b1-curses-panel.patch
  • Loading branch information
mcepl committed Apr 4, 2024
1 parent a4fff8a commit f930a24
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 f930a24

Please sign in to comment.