Message281669
New simplier patch thanks to https://bugs.python.org/issue28792. Also corrected docstrings.
Also ran a micro-benchmark of `bisect.bisect(foo, "c")` with `foo = list("abcdef")`:
Median +- std dev: [before] 434 ns +- 17 ns -> [after] 369 ns +- 22 ns: 1.18x faster
FTR: ./python -m perf timeit -s 'import bisect; foo = list("abdef")' 'bisect.bisect(foo, "c")' -o after.json --inherit=PYTHONPATH --affinity=2,3 |
|
Date |
User |
Action |
Args |
2016-11-24 23:37:00 | mdk | set | recipients:
+ mdk, rhettinger, vstinner, larry |
2016-11-24 23:37:00 | mdk | set | messageid: <1480030620.23.0.229310006875.issue28754@psf.upfronthosting.co.za> |
2016-11-24 23:37:00 | mdk | link | issue28754 messages |
2016-11-24 23:36:59 | mdk | create | |
|