def __dir__(self): # TODO: use a transform func to provide __getattr__ # access to event data return dirinfo(self)
def __dir__(self): # TODO: use a transform func to provide __getattr__ # access to event data return utils.dirinfo(self)
def __dir__(self): dircon = dir(self._con) if self.connected() else [] return utils.dirinfo(self) + dircon
def __dir__(self): return utils.dirinfo(self)