Commit 92678105 authored by Mark Dickinson's avatar Mark Dickinson

Remove accidentally-committed debugging code.

parent 0407e960
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment