diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2022-09-16 14:47:59 -0700 |
---|---|---|
committer | Ross Barnowski <rossbar@berkeley.edu> | 2022-09-16 14:47:59 -0700 |
commit | 1cefcb90d376446de7bd7da30e90738b3cbd47d1 (patch) | |
tree | b097a6dd61688e10b8c10df0bc7dc464ba1fdb1f /numpy/lib | |
parent | b99935e362e1fb52a4d12e678cb509c45b666cfb (diff) | |
download | numpy-1cefcb90d376446de7bd7da30e90738b3cbd47d1.tar.gz |
STY: minor formatting touchups.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/function_base.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 9d59d79de..5b570accb 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3668,11 +3668,10 @@ def msort(a): Examples -------- - >>> a = np.array([[1,4],[3,1]]) - >>> np.msort(a) # sort along the first axis + >>> a = np.array([[1, 4], [3, 1]]) + >>> np.msort(a) # sort along the first axis array([[1, 1], [3, 4]]) - """ b = array(a, subok=True, copy=True) |