Remove accidentally-committed debugging code.

This commit is contained in:
Mark Dickinson 2012-04-15 16:45:31 +01:00
parent 0407e96061
commit 92678105c5
1 changed files with 0 additions and 3 deletions

View File

@ -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)