method: test.collect.Generator.__cmp__

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

origin: test.collect.Collector

where:

changes in __dict__ after execution:

function source:

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

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/collect.py

traceback test.collect.Generator.__cmp__.0

called in /home/johnny/projects/merlinux/py/dist/py/test/collect.py

traceback test.collect.Generator.__cmp__.1

called in /home/johnny/projects/merlinux/py/dist/py/test/collect.py

traceback test.collect.Generator.__cmp__.2