use Py_ssize_t for string indexes (thanks, neal!)

This commit is contained in:
Fredrik Lundh 2006-05-24 10:20:36 +00:00
parent 8ff672e62d
commit 240bf2a8e4
1 changed files with 2 additions and 2 deletions

View File

@ -5068,8 +5068,8 @@ int PyUnicode_Contains(PyObject *container,
}
}
} else {
int start = 0;
int end = PyUnicode_GET_SIZE(u) - size;
Py_ssize_t start = 0;
Py_ssize_t end = PyUnicode_GET_SIZE(u) - size;
for (; start <= end; start++)
if (Py_UNICODE_MATCH(u, start, v)) {
result = 1;