diff options
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r-- | numpy/ma/core.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index 186f72bf4..03963d6c7 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -2842,7 +2842,8 @@ class MaskedArray(ndarray): # Backwards compatibility w/ numpy.core.ma. if hasattr(data, '_mask') and not isinstance(data, ndarray): _data._mask = data._mask - # FIXME: should we set `_data._sharedmask = True`? Previously this set `_sharedmask = True`, but + # FIXME: should we set `_data._sharedmask = True`? + # Previously this set `_sharedmask = True`, but # that didn't actually do anything as the variable was unused! # Process mask. |