def get_busy(): for i in range(0, num_channels): if sound.busy(i): return True return False
def get_sound(self): rv = sound.busy(self.id) if rv is not None: rv = sounds.get(rv, None) return rv
def get_busy(self): return sound.busy(self.id)