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 serhiy.storchaka
Recipients Ronan.Lamy, r.david.murray, serhiy.storchaka
Date 2017-11-08.18:05:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510164354.91.0.213398074469.issue31984@psf.upfronthosting.co.za>
In-reply-to
Content
See issue24284. `s1.startswith(s2, start, end)` for non-negative indices and non-tuple s2 is equivalent to expressions

    start + len(s2) <= end and s2[start: start + len(s2)] == s2

or
    s1.find(s2, start, end) == start
History
Date User Action Args
2017-11-08 18:05:54serhiy.storchakasetrecipients: + serhiy.storchaka, r.david.murray, Ronan.Lamy
2017-11-08 18:05:54serhiy.storchakasetmessageid: <1510164354.91.0.213398074469.issue31984@psf.upfronthosting.co.za>
2017-11-08 18:05:54serhiy.storchakalinkissue31984 messages
2017-11-08 18:05:54serhiy.storchakacreate