Add missing sentinel to PyCursesWindow_getsets
The PyCursesWindow_getsets array was introduced without sentinel in c3581ca21a57.
This commit is contained in:
parent
c64ae92bf1
commit
2a7fe03528
|
@ -2056,7 +2056,8 @@ static PyGetSetDef PyCursesWindow_getsets[] = {
|
|||
{"encoding",
|
||||
(getter)PyCursesWindow_get_encoding,
|
||||
(setter)PyCursesWindow_set_encoding,
|
||||
"the typecode character used to create the array"}
|
||||
"the typecode character used to create the array"},
|
||||
{NULL, NULL, NULL, NULL } /* sentinel */
|
||||
};
|
||||
|
||||
/* -------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in New Issue