]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Comment out a debugging print (spotted by Michael Deegan)
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 26 Jul 2000 18:36:27 +0000 (18:36 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 26 Jul 2000 18:36:27 +0000 (18:36 +0000)
Modules/_cursesmodule.c

index 3aa3f312c108a98dd168746d366cb0f888636d69..f5b18dcf7da146383e67a97cc3c48f018eaee191 100644 (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