diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-01 01:24:59 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-01 01:24:59 +0000 |
commit | 53d748f85bbf72268ea262695e8c16857ab8d566 (patch) | |
tree | 49171166b2f1554c312b7d12a946ecc4fe520284 /scipy/base/numeric.py | |
parent | cd9c8d62c5c16452c29c622e2bb24a2cf26e1da3 (diff) | |
download | numpy-53d748f85bbf72268ea262695e8c16857ab8d566.tar.gz |
Added lexicographic sort.
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index 075c54a42..e91a82681 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -63,7 +63,7 @@ fastCopyAndTranspose = multiarray._fastCopyAndTranspose register_dtype = multiarray.register_dtype set_numeric_ops = multiarray.set_numeric_ops can_cast = multiarray.can_cast - +lexsort = multiarray.lexsort def asarray(a, dtype=None, fortran=False): |