[issue7458] crash in str.rfind() with an invalid start value

2009-12-08 Thread STINNER Victor
STINNER Victor added the comment: flox> Actually the "find" method was not broken. Oh, you're right, str.find() was already fixed by r66631 (related to issue #3967). I prefer your patch flox ;-) I fixed this issue title. -- title: crash in str.find() and str.rfind() with invalid start

[issue7458] crash in str.rfind() with an invalid start value

2009-12-18 Thread flox
flox added the comment: I proposed a patch which solve this issue and improve performance of str.rfind. See issue 7462. -- ___ Python tracker ___

[issue7458] crash in str.rfind() with an invalid start value

2010-01-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, I've committed the tests after the patch for issue7462 removed the offending code. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue7458] crash in str.rfind() with an invalid start value

2010-01-09 Thread STINNER Victor
STINNER Victor added the comment: > Ok, I've committed the tests after the patch for issue7462 removed the > offending code. Thanks! r77241 and r77247 in trunk -- ___ Python tracker __