Raw codepoint test backend. Tweaks to constructor arguments. Try to handle the case...
[python-collate.git] / collate / _abcollator.py
1 class Collator(object):
2 def cmp(self, string1, string2):
3 return cmp(self.key(string1), self.key(string2))
4
5