commit | b51b470eb86ded7d3ea26081ca8bc89b4448f962 | [log] [tgz] |
---|---|---|
author | Fredrik Lundh <fredrik@pythonware.com> | Mon May 29 22:42:07 2006 +0000 |
committer | Fredrik Lundh <fredrik@pythonware.com> | Mon May 29 22:42:07 2006 +0000 |
tree | df73580e83c7e9079cccadc25bd5b1cd3fbd5c9d | |
parent | a355c14fa10e3f533e4749d3cbed273b864d6235 [diff] [blame] |
fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on the current behaviour ;-)
diff --git a/Objects/stringlib/count.h b/Objects/stringlib/count.h index 0bd02b5..84a852f 100644 --- a/Objects/stringlib/count.h +++ b/Objects/stringlib/count.h
@@ -13,8 +13,11 @@ { Py_ssize_t count; - if (sub_len == 0) + if (sub_len == 0) { + if (str_len < 0) + return 1; /* start >= len(str) */ return str_len + 1; + } count = fastsearch(str, str_len, sub, sub_len, FAST_COUNT);