summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-04-15 16:45:31 +0100
committerMark Dickinson <mdickinson@enthought.com>2012-04-15 16:45:31 +0100
commit92678105c591152a71d83226a50a19d47a4227fe (patch)
tree04e5f93419dfaef7263d17b83a42fd695ec92229
parent0407e960610f043f3459cdc224300dddf7941765 (diff)
downloadcpython-git-92678105c591152a71d83226a50a19d47a4227fe.tar.gz
Remove accidentally-committed debugging code.
-rw-r--r--Modules/_bisectmodule.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_bisectmodule.c b/Modules/_bisectmodule.c
index 4798c124ee..ffcd994cfa 100644
--- a/Modules/_bisectmodule.c
+++ b/Modules/_bisectmodule.c
@@ -24,9 +24,6 @@ internal_bisect_right(PyObject *list, PyObject *item, Py_ssize_t lo, Py_ssize_t
/* The (size_t)cast ensures that the addition and subsequent division
are performed as unsigned operations, avoiding difficulties from
signed overflow. (See issue 13496.) */
- printf("lo: %d\n", lo);
- printf("hi: %d\n", hi);
- printf("mid: %d\n", mid);
mid = ((size_t)lo + hi) / 2;
litem = PySequence_GetItem(list, mid);
if (litem == NULL)