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, martin.panter, mdk, rhettinger, vstinner
Date 2016-11-26.09:23:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480152202.22.0.81565837268.issue28754@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the new patch, I ran a diff between "./python -m pydoc _bisect" before and after my patch, here it is:

13,15c13
<     bisect_left(...)
<         bisect_left(a, x[, lo[, hi]]) -> index
<         
---
>     bisect_left(a, x, lo=0, hi=-1)
25,27c23
<     bisect_right(...)
<         bisect_right(a, x[, lo[, hi]]) -> index
<         
---
>     bisect_right(a, x, lo=0, hi=-1)
32c28
<         beyond the rightmost x already there
---
>         beyond the rightmost x already there.
37,39c33
<     insort_left(...)
<         insort_left(a, x[, lo[, hi]])
<         
---
>     insort_left(a, x, lo=0, hi=-1)
47,49c41
<     insort_right(...)
<         insort_right(a, x[, lo[, hi]])
<         
---
>     insort_right(a, x, lo=0, hi=-1)

So I kept my addition of the missing full stop, and dropped the handwritten signature as Argument Clinic generates it.
History
Date User Action Args
2016-11-26 09:23:22mdksetrecipients: + mdk, rhettinger, vstinner, larry, martin.panter
2016-11-26 09:23:22mdksetmessageid: <1480152202.22.0.81565837268.issue28754@psf.upfronthosting.co.za>
2016-11-26 09:23:22mdklinkissue28754 messages
2016-11-26 09:23:21mdkcreate