Commit f1f2fe3c authored by Ronald Oussoren's avatar Ronald Oussoren

Add missing sentinel to PyCursesWindow_getsets

The PyCursesWindow_getsets array was introduced without sentinel in c3581ca21a57.
parent 9d143481
......@@ -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 */
};
/* -------------------------------------------------------*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment