def unpack(a, size): """From a packed array *a*, return the boolean array. Remove byte padding at the end.""" return np.unpackbits(a)[:size]