summaryrefslogtreecommitdiff
path: root/Modules/_heapqmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-12 21:40:50 -0700
committerRaymond Hettinger <python@rcn.com>2015-05-12 21:40:50 -0700
commit636488043b490ab70413990b458443aa41f504b2 (patch)
treeb462b68ffe2af1e07d527e428778f5ce99fdf53d /Modules/_heapqmodule.c
parentffcd8490d04727ff2a45f380b27e437c0c9e49f4 (diff)
downloadcpython-git-636488043b490ab70413990b458443aa41f504b2.tar.gz
More timings suggest that 2500 is closer to the break-even point.
Diffstat (limited to 'Modules/_heapqmodule.c')
-rw-r--r--Modules/_heapqmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_heapqmodule.c b/Modules/_heapqmodule.c
index 01b35be8eb..88c35cf32e 100644
--- a/Modules/_heapqmodule.c
+++ b/Modules/_heapqmodule.c
@@ -335,7 +335,7 @@ heapify_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))
in cache, we prefer the simpler algorithm with less branching.
*/
n = PyList_GET_SIZE(heap);
- if (n > 10000)
+ if (n > 2500)
return cache_friendly_heapify(heap, siftup_func);
/* Transform bottom-up. The largest index there's any point to