def __get__()

in pci_lib/pci_lib.py [0:0]


    def __get__(self, obj, cls):
        if obj is None:
            return self
        value = obj.__dict__[self.func.__name__] = self.func(obj)
        return value