Skip to content

Commit bdc3232

Browse files
committed
Added docstring for numpy.ma.take() function.
1 parent 43a8cd2 commit bdc3232

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

numpy/ma/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6276,7 +6276,8 @@ def take(self, indices, axis=None, out=None, mode='raise'):
62766276
mask=[[False, False],
62776277
[ True, False]],
62786278
fill_value=999999)
6279-
""" (_data, _mask) = (self._data, self._mask)
6279+
"""
6280+
(_data, _mask) = (self._data, self._mask)
62806281
cls = type(self)
62816282
# Make sure the indices are not masked
62826283
maskindices = getmask(indices)

0 commit comments

Comments
 (0)