Home | History | Annotate | Download | only in Modules

Lines Matching full:subwin

1849         PyErr_SetString(PyExc_TypeError, "subwin requires 2 or 4 arguments");
1853 /* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x); */
1859 win = subwin(self->win, nlines, ncols, begin_y, begin_x);
2061 {"subwin", (PyCFunction)PyCursesWindow_SubWin, METH_VARARGS},