def __eq__()

in pyqldb/util/qldb_hash.py [0:0]


    def __eq__(self, other):
        if not isinstance(other, QldbHash) or other is None:
            return False
        return QldbHash._hash_comparator(self.get_qldb_hash(), other.get_qldb_hash()) == 0