diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-01-08 21:56:54 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-01-08 21:56:54 +0000 |
commit | 1bd2d49ef378fb869d015cef32c3e44a4c03a8f0 (patch) | |
tree | 43335baf1da0b6e9de0ad806e721a077e3cbfa45 /numpy/core/fromnumeric.py | |
parent | 98b6d48b07f4eadfb7d1fc41483debe7e07eecd6 (diff) | |
download | numpy-1bd2d49ef378fb869d015cef32c3e44a4c03a8f0.tar.gz |
Whitespace cleanup.
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index e153f6061..e80006a15 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -124,13 +124,13 @@ def sort(a, axis=-1, kind='quicksort', order=None): axis -- axis to be sorted (default -1). Can be None to indicate that a flattened and sorted array should - be returned (the array method does not support this). + be returned (the array method does not support this). kind -- sorting algorithm (default 'quicksort') Possible values: 'quicksort', 'mergesort', or 'heapsort'. order -- For an array with fields defined, this argument allows specification of which fields to compare first, second, etc. Not all fields need be specified. - + Returns: None. @@ -171,7 +171,7 @@ def argsort(a, axis=-1, kind='quicksort', order=None): axis -- axis to be indirectly sorted (default -1) Can be None to indicate return indices into the - flattened array. + flattened array. kind -- sorting algorithm (default 'quicksort') Possible values: 'quicksort', 'mergesort', or 'heapsort' order -- For an array with fields defined, this argument allows |