method: test.collect.Collector.__cmp__

*Not documented*
    def __cmp__(self, other): 

origin: test.collect.Collector

where:

function source:

def __cmp__(self, other): 
    s1 = self.getsortvalue()
    s2 = other.getsortvalue()
    #print "cmp", s1, s2
    return cmp(s1, s2)