This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mdk
Recipients larry, mdk, rhettinger, vstinner
Date 2016-11-24.23:36:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480030620.23.0.229310006875.issue28754@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2016-11-24 23:37:00mdksetrecipients: + mdk, rhettinger, vstinner, larry
2016-11-24 23:37:00mdksetmessageid: <1480030620.23.0.229310006875.issue28754@psf.upfronthosting.co.za>
2016-11-24 23:37:00mdklinkissue28754 messages
2016-11-24 23:36:59mdkcreate