From: Andrew M. Kuchling Date: Wed, 26 Jul 2000 18:36:27 +0000 (+0000) Subject: Comment out a debugging print (spotted by Michael Deegan) X-Git-Tag: v2.0b1~710 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8353f623d6c85e6348ba0544a5d84b60bbc2d35b;p=thirdparty%2FPython%2Fcpython.git Comment out a debugging print (spotted by Michael Deegan) --- diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 3aa3f312c108..f5b18dcf7da1 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -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