Open
Description
>>> m = np.ma.array(["hello"])
>>> np.ma.take(m, 0)
File "\numpy\ma\core.py", line 5670, in take
out = _data.take(indices, axis=axis, mode=mode)[...].view(cls)
TypeError: string indices must be integers
Since np.string_[...]
is not supported
Introduced by #7586