X-Git-Url: https://git.korewanetadesu.com/?p=python-collate.git;a=blobdiff_plain;f=collate%2F_abcollator.py;h=fdd7783fc1eceee8382bd46856e8af7ac787e468;hp=094a5debbbd7e155d09efe8fca6db85b3435e3b3;hb=7dc546d67cd996c0a54b07261ab1b7bcdf4019ce;hpb=29f1f7e12a4ca6100b00dc0d32e84f82f530bcb4 diff --git a/collate/_abcollator.py b/collate/_abcollator.py index 094a5de..fdd7783 100644 --- a/collate/_abcollator.py +++ b/collate/_abcollator.py @@ -1,5 +1,18 @@ +import collate._strings + 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)) - + def sortemekey(self, string, invalid=float('inf')): + keys = [] + for sorteme in collate._strings.sortemes(string): + num, alpha = collate._strings.numeric(sorteme, invalid) + if num == invalid: + keys.append(self.key(alpha)) + else: + keys.append(num) + # Shove the sortkeyed original string on the end to resolve + # ties intelligently. + return (keys, self.key(string))