Commit 589cd113 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Comment out a debugging print (spotted by Michael Deegan)

parent 6b922e5d
......@@ -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
......
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