Antoine Pitrou
|
6467213bfd
|
Issue #7622: Improve the split(), rsplit(), splitlines() and replace()
methods of bytes, bytearray and unicode objects by using a common
implementation based on stringlib's fast search. Patch by Florent Xicluna.
|
2010-01-13 07:55:48 +00:00 |
Amaury Forgeot d'Arc
|
fc5ea39289
|
#3967: Correct a crash in count() and find() methods of string-like objects.
For example:
"".count("xxxx", sys.maxint, 0)
Reviewed by Benjamin Peterson.
Will port to 2.5 and 3.0.
|
2008-09-26 22:34:08 +00:00 |
Fredrik Lundh
|
9e9ef9fa5a
|
changed count to return 0 for slices outside the source string
|
2006-05-30 17:39:58 +00:00 |
Fredrik Lundh
|
b51b470eb8
|
fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on
the current behaviour ;-)
|
2006-05-29 22:42:07 +00:00 |
Fredrik Lundh
|
c2d29c5a6d
|
needforspeed: replace improvements, changed to Py_LOCAL_INLINE
where appropriate
|
2006-05-27 14:58:20 +00:00 |
Fredrik Lundh
|
58b5e84d52
|
needforspeed: stringlib refactoring, continued. added count and
find helpers; updated unicodeobject to use stringlib_count
|
2006-05-26 19:24:53 +00:00 |