syslocale: Standardize API.
[python-collate.git] / collate / _abcollator.py
index 094a5de..71f5f54 100644 (file)
@@ -1,5 +1,4 @@
 class Collator(object):
     def cmp(self, string1, string2):
+        """Return negative if a < b, zero if a == b, positive if a > b."""
         return cmp(self.key(string1), self.key(string2))
-
-