summaryrefslogtreecommitdiffstats
path: root/Modules/_cursesmodule.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-07-26 18:36:27 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-07-26 18:36:27 (GMT)
commit8353f623d6c85e6348ba0544a5d84b60bbc2d35b (patch)
tree741fab2970d90d58a054ab9735c206240eaf0bd8 /Modules/_cursesmodule.c
parent2031893842fe8dfb4f166d7221006c70c62448b7 (diff)
downloadcpython-8353f623d6c85e6348ba0544a5d84b60bbc2d35b.zip
cpython-8353f623d6c85e6348ba0544a5d84b60bbc2d35b.tar.gz
cpython-8353f623d6c85e6348ba0544a5d84b60bbc2d35b.tar.bz2
Comment out a debugging print (spotted by Michael Deegan)
Diffstat (limited to 'Modules/_cursesmodule.c')
-rw-r--r--Modules/_cursesmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index 3aa3f31..f5b18dc 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