diff options
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r-- | numpy/ma/core.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index de8512831..bb013ef5e 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -4743,8 +4743,7 @@ class MaskedArray(ndarray): round.__doc__ = ndarray.round.__doc__ #............................................ - def argsort(self, axis=None, fill_value=None, kind='quicksort', - order=None): + def argsort(self, axis=None, kind='quicksort', order=None, fill_value=None): """ Return an ndarray of indices that sort the array along the specified axis. Masked values are filled beforehand to |