Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8353f62

Browse files
committed
Comment out a debugging print (spotted by Michael Deegan)
1 parent 2031893 commit 8353f62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_cursesmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ PyCursesWindow_SubWin(PyCursesWindowObject *self, PyObject *args)
10961096
return NULL;
10971097
}
10981098

1099-
printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x);
1099+
/* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x); */
11001100
if (self->win->_flags & _ISPAD)
11011101
win = subpad(self->win, nlines, ncols, begin_y, begin_x);
11021102
else

0 commit comments

Comments
 (0)