summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2007-06-30 14:42:31 +0000
committerCharles Harris <charlesr.harris@gmail.com>2007-06-30 14:42:31 +0000
commit57042ccc48c75b9c8c94cd350fc8d289ff79436a (patch)
treeef9a3e8fd86b314a94a50203e2c2c3d66fc6aae3 /numpy/add_newdocs.py
parent4c49c1891382a2320ab8c3dcfce0e80487906cff (diff)
downloadnumpy-57042ccc48c75b9c8c94cd350fc8d289ff79436a.tar.gz
Replace <= by < in the insertion sort part of argsort(kind='mergesort')
for strings. Fixes ticket #540.
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 7b04ee2f4..6efb99a8d 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -367,7 +367,7 @@ add_newdoc('numpy.core.multiarray','lexsort',
sort order, and so on). The keys argument must be a sequence of things
that can be converted to arrays of the same shape.
- :Parameters:
+ Parameters:
a : array type
Array containing values that the returned indices should sort.
@@ -376,16 +376,16 @@ add_newdoc('numpy.core.multiarray','lexsort',
Axis to be indirectly sorted. None indicates that the flattened
array should be used. Default is -1.
- :Returns:
+ Returns:
indices : integer array
Array of indices that sort the keys along the specified axis. The
array has the same shape as the keys.
- :SeeAlso:
+ SeeAlso:
- - argsort : indirect sort
- - sort : inplace sort
+ argsort : indirect sort
+ sort : inplace sort
""")