mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Fix typo in the PyUnicode_Find() implementation
This commit is contained in:
parent
798b4df812
commit
eaf139b3fc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue