Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eaf139b

Browse files
committed
Fix typo in the PyUnicode_Find() implementation
1 parent 798b4df commit eaf139b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8730,7 +8730,7 @@ PyUnicode_Find(PyObject *str,
87308730
);
87318731
else
87328732
result = any_find_slice(
8733-
asciilib_find_slice, ucs1lib_rfind_slice,
8733+
asciilib_rfind_slice, ucs1lib_rfind_slice,
87348734
ucs2lib_rfind_slice, ucs4lib_rfind_slice,
87358735
str, sub, start, end
87368736
);

0 commit comments

Comments
 (0)