diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-03-14 22:21:05 -0700 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-03-14 22:22:28 -0700 |
commit | 7ee96bd982f98392f577ab50abd42c51de4550d2 (patch) | |
tree | 4773220a6ae96aace7a383b4fd2198ea4067c754 /numpy/lib/index_tricks.py | |
parent | 2411b7b0f1bee1472db260728de38f0dba4baf7b (diff) | |
download | numpy-7ee96bd982f98392f577ab50abd42c51de4550d2.tar.gz |
API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index d1e925ead..69539d482 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -1,4 +1,4 @@ -__all__ = ['ravel_coords', +__all__ = ['ravel_multi_index', 'unravel_index', 'mgrid', 'ogrid', @@ -17,7 +17,7 @@ import math import function_base import numpy.matrixlib as matrix from function_base import diff -from numpy.lib._compiled_base import ravel_coords, unravel_index +from numpy.lib._compiled_base import ravel_multi_index, unravel_index makemat = matrix.matrix def ix_(*args): |