Fix typo in the PyUnicode_Find() implementation

This commit is contained in:
Antoine Pitrou 2011-10-09 00:33:09 +02:00
parent 798b4df812
commit eaf139b3fc
1 changed files with 1 additions and 1 deletions

View File

@ -8730,7 +8730,7 @@ PyUnicode_Find(PyObject *str,
);
else
result = any_find_slice(
asciilib_find_slice, ucs1lib_rfind_slice,
asciilib_rfind_slice, ucs1lib_rfind_slice,
ucs2lib_rfind_slice, ucs4lib_rfind_slice,
str, sub, start, end
);