Add missing sentinel to PyCursesWindow_getsets

The PyCursesWindow_getsets array was introduced without sentinel in c3581ca21a57.
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index 166a93a..64178d7 100644
--- a/Modules/_cursesmodule.c
+++ b/Modules/_cursesmodule.c
@@ -2056,7 +2056,8 @@
     {"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 */
 };
 
 /* -------------------------------------------------------*/