Comment out a debugging print (spotted by Michael Deegan)

This commit is contained in:
Andrew M. Kuchling 2000-07-26 18:36:27 +00:00
parent 2031893842
commit 8353f623d6
1 changed files with 1 additions and 1 deletions

View File

@ -1096,7 +1096,7 @@ PyCursesWindow_SubWin(PyCursesWindowObject *self, PyObject *args)
return NULL;
}
printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x);
/* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x); */
if (self->win->_flags & _ISPAD)
win = subpad(self->win, nlines, ncols, begin_y, begin_x);
else