method: test.collect.Collector.__eq__

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

origin: test.collect.Collector

where:

function source:

def __eq__(self, other): 
    try: 
        return self.name == other.name and self.parent == other.parent 
    except AttributeError: 
        return False