From: Mark Dickinson Date: Sun, 15 Apr 2012 15:45:31 +0000 (+0100) Subject: Remove accidentally-committed debugging code. X-Git-Tag: v2.7.4rc1~901 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92678105c591152a71d83226a50a19d47a4227fe;p=python Remove accidentally-committed debugging code. --- 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)