I would expect this to always be true: ```python >>> x = ... >>> xm = np.ma.asanyarray(x) >>> xm is np.ma.asanyarray(xm) False # what? ```