diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-08 22:33:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-08 22:33:09 (GMT) |
commit | eaf139b3fc22be22e2c23d84d65a5c344df684a2 (patch) | |
tree | 7a816200b452a1b07a1d3c0d20837aa6988de414 /Objects | |
parent | 798b4df81215bdc1caf479bdb75e129a3e51d173 (diff) | |
download | cpython-eaf139b3fc22be22e2c23d84d65a5c344df684a2.zip cpython-eaf139b3fc22be22e2c23d84d65a5c344df684a2.tar.gz cpython-eaf139b3fc22be22e2c23d84d65a5c344df684a2.tar.bz2 |
Fix typo in the PyUnicode_Find() implementation
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 990b5bf..e904b6e 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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 ); |