This commit is contained in:
Kovid Goyal 2012-07-05 00:32:26 +05:30
parent bb606bc3ab
commit 6c5db6b259

View File

@ -90,7 +90,7 @@ def icu_case_sensitive_sort_key(collator, obj):
def icu_strcmp(collator, a, b):
return collator.strcmp(lower(a), lower(b))
def py_strcmp(a, b, strength=None):
def py_strcmp(a, b):
return cmp(a.lower(), b.lower())
def icu_case_sensitive_strcmp(collator, a, b):