diff options
author | default-303 <ajayds2001@gmail.com> | 2021-05-26 17:58:53 +0530 |
---|---|---|
committer | default-303 <ajayds2001@gmail.com> | 2021-05-26 17:58:53 +0530 |
commit | b30318a031624e17b01ffa5f82853c24c5111f32 (patch) | |
tree | 89e23992ea680143fa8cbb05afbd046991f71ac5 /numpy/ma/core.py | |
parent | df363b0e644ba1ad2bf1815a126935f120c19860 (diff) | |
download | numpy-b30318a031624e17b01ffa5f82853c24c5111f32.tar.gz |
MAINT: Added comments for future refrence in core.py and system_info.py - fixed Azure linter 'line too long' error
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. |