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 barry
Recipients barry, rbcollins
Date 2007-10-11.01:24:58
SpamBayes Score 0.32695428
Marked as misclassified No
Message-id <1192065899.16.0.303804500993.issue1259@psf.upfronthosting.co.za>
In-reply-to
Content
I believe this is because string_find_internal() uses an O& with
_PyEval_SliceIndex() to convert its start and end arguments, but the
latter function does not accept None.  To fix this, you'd have to change
string_find_internal() to do its own argument checking for None before
calling _PyEval_SliceIndex.
History
Date User Action Args
2007-10-11 01:24:59barrysetspambayes_score: 0.326954 -> 0.32695428
recipients: + barry, rbcollins
2007-10-11 01:24:59barrysetspambayes_score: 0.326954 -> 0.326954
messageid: <1192065899.16.0.303804500993.issue1259@psf.upfronthosting.co.za>
2007-10-11 01:24:59barrylinkissue1259 messages
2007-10-11 01:24:58barrycreate