Kaydet (Commit) 2a7fe035 authored tarafından Ronald Oussoren's avatar Ronald Oussoren

Add missing sentinel to PyCursesWindow_getsets

The PyCursesWindow_getsets array was introduced without sentinel in c3581ca21a57.
üst c64ae92b
...@@ -2056,7 +2056,8 @@ static PyGetSetDef PyCursesWindow_getsets[] = { ...@@ -2056,7 +2056,8 @@ static PyGetSetDef PyCursesWindow_getsets[] = {
{"encoding", {"encoding",
(getter)PyCursesWindow_get_encoding, (getter)PyCursesWindow_get_encoding,
(setter)PyCursesWindow_set_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