diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2006-09-22 07:25:18 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2006-09-22 07:25:18 +0000 |
commit | 5453138a56c0b78ebf6f210857fed7357f41dfa0 (patch) | |
tree | 85f3de10613131621f5bc013ea4d391ae95a3ad7 /numpy/lib/function_base.py | |
parent | 4c856fa57b5dfd387f83c308a8f3933dd5792012 (diff) | |
download | numpy-5453138a56c0b78ebf6f210857fed7357f41dfa0.tar.gz |
Fix docstring for delete.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 5bcd3a443..f13736f2a 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1150,11 +1150,11 @@ def delete(arr, obj, axis=None): [1,2,3], [6,7,8]] - >>> deletefrom(arr, 1, 1) + >>> delete(arr, 1, 1) array([[3,5], [1,3], [6,8]) - >>> deletefrom(arr, 1, 0) + >>> delete(arr, 1, 0) array([[3,4,5], [6,7,8]]) """ |