summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-08 22:33:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-08 22:33:09 (GMT)
commiteaf139b3fc22be22e2c23d84d65a5c344df684a2 (patch)
tree7a816200b452a1b07a1d3c0d20837aa6988de414 /Objects
parent798b4df81215bdc1caf479bdb75e129a3e51d173 (diff)
downloadcpython-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.c2
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
);