]> granicus.if.org Git - python/commitdiff
Remove accidentally-committed debugging code.
authorMark Dickinson <mdickinson@enthought.com>
Sun, 15 Apr 2012 15:45:31 +0000 (16:45 +0100)
committerMark Dickinson <mdickinson@enthought.com>
Sun, 15 Apr 2012 15:45:31 +0000 (16:45 +0100)
Modules/_bisectmodule.c

index 4798c124eefa10e6fb36aeaf451a70b80441130f..ffcd994cfaee462dce21e9e00cb6b7e270d3fdac 100644 (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)