*** Modules/_cursesmodule.c~ Mon Jan 9 23:08:06 2006 --- Modules/_cursesmodule.c Fri Apr 14 13:18:46 2006 *************** *** 819,825 **** --- 819,830 ---- if (!PyArg_ParseTuple(args,"ii;y,x",&y,&x)) return NULL; Py_BEGIN_ALLOW_THREADS + #ifdef STRICT_SYSV_CURSES + /* Untested */ + rtn2 = wmove(self->win,y,x)==ERR ? ERR : wgetnstr(self->win, rtn, 1023); + #else rtn2 = mvwgetnstr(self->win,y,x,rtn, 1023); + #endif Py_END_ALLOW_THREADS break; case 3: