needforspeed: use Py_ssize_t for the fastsearch counter and skip
length (thanks, neal!). and yes, I've verified that this doesn't
slow things down ;-)
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 0aa1e5b3..b4c8950 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -802,7 +802,7 @@
fastsearch(const char* s, Py_ssize_t n, const char* p, Py_ssize_t m, int mode)
{
long mask;
- int skip, count = 0;
+ Py_ssize_t skip, count = 0;
Py_ssize_t i, j, mlast, w;
w = n - m;