diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-05-03 14:50:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 14:50:24 (GMT) |
commit | c2931d31f8ba7cf10044de276018c713ffc73592 (patch) | |
tree | 6224fcc17abe3498f747e3110f9c3f99a8cb6597 /Modules/_cursesmodule.c | |
parent | 440c0257262fec6f519bb81e49f1a4f341aeed66 (diff) | |
download | cpython-c2931d31f8ba7cf10044de276018c713ffc73592.zip cpython-c2931d31f8ba7cf10044de276018c713ffc73592.tar.gz cpython-c2931d31f8ba7cf10044de276018c713ffc73592.tar.bz2 |
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (GH-25854)
Diffstat (limited to 'Modules/_cursesmodule.c')
-rw-r--r-- | Modules/_cursesmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index bcf9ad1..b6b7ca4 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -104,7 +104,7 @@ static const char PyCursesVersion[] = "2.2"; #include "Python.h" #include "pycore_long.h" // _PyLong_GetZero() - +#include "pycore_structseq.h" // PyStructSequence_InitType() #ifdef __hpux #define STRICT_SYSV_CURSES |