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 Mike Lenzen
Recipients Mike Lenzen, rhettinger
Date 2016-03-28.04:00:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1459137648.89.0.2938672633.issue26653@psf.upfronthosting.co.za>
In-reply-to
Content
>>> bisect.bisect([1, 2, 3], 1, hi=None)
TypeError: 'NoneType' object cannot be interpreted as an integer

I'm assuming this is an error in the C implementation because the Python source has:

    if hi is None:
        hi = len(a)
History
Date User Action Args
2016-03-28 04:00:48Mike Lenzensetrecipients: + Mike Lenzen, rhettinger
2016-03-28 04:00:48Mike Lenzensetmessageid: <1459137648.89.0.2938672633.issue26653@psf.upfronthosting.co.za>
2016-03-28 04:00:48Mike Lenzenlinkissue26653 messages
2016-03-28 04:00:48Mike Lenzencreate