diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-13 20:50:00 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-13 20:50:00 +0000 |
commit | 099f140d97c07671497e5883ce2be9fcac62a3a1 (patch) | |
tree | 4ad18c2e84e564cbc153e8c00467491ff70aa77b /numpy/lib/shape_base.py | |
parent | ec5a3911b06f7dbefe89947a42d8ff23e1b82fdd (diff) | |
download | numpy-099f140d97c07671497e5883ce2be9fcac62a3a1.tar.gz |
Add roll function from ticket #293
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r-- | numpy/lib/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index c6dc7b5c9..e20da62ae 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -1,6 +1,6 @@ __all__ = ['atleast_1d','atleast_2d','atleast_3d','vstack','hstack', 'column_stack','row_stack', 'dstack','array_split','split','hsplit', - 'vsplit','dsplit','apply_over_axes','expand_dims', + 'vsplit','dsplit','apply_over_axes','expand_dims', 'apply_along_axis', 'kron', 'tile', 'get_array_wrap'] import numpy.core.numeric as _nx |