[Python-checkins] CVS: python/dist/src/Modules _cursesmodule.c,2.35,2.36

A.M. Kuchling python-dev@python.org
Wed, 26 Jul 2000 11:36:31 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv26195

Modified Files:
	_cursesmodule.c 
Log Message:
Comment out a debugging print (spotted by Michael Deegan)


Index: _cursesmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_cursesmodule.c,v
retrieving revision 2.35
retrieving revision 2.36
diff -C2 -r2.35 -r2.36
*** _cursesmodule.c	2000/07/26 02:57:20	2.35
--- _cursesmodule.c	2000/07/26 18:36:27	2.36
***************
*** 1097,1101 ****
    }
  
!   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);
--- 1097,1101 ----
    }
  
!   /* 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);