diff options
| author | Robert Kern <robert.kern@gmail.com> | 2008-07-03 06:42:28 +0000 |
|---|---|---|
| committer | Robert Kern <robert.kern@gmail.com> | 2008-07-03 06:42:28 +0000 |
| commit | f912322ee454fee1d15da01c5fd951ab2fcb5f99 (patch) | |
| tree | 9ef9a29f9573775cb3785a78b6838d9f4c3cbf29 /numpy/lib/__init__.py | |
| parent | a74f0dfbcdfaf0ed5929fed7a27dc8738709828f (diff) | |
| download | numpy-f912322ee454fee1d15da01c5fd951ab2fcb5f99.tar.gz | |
ENH: Add broadcast_arrays() function to expose broadcasting to pure Python functions that cannot be made to be ufuncs.
Diffstat (limited to 'numpy/lib/__init__.py')
| -rw-r--r-- | numpy/lib/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index aeb43fafb..f1b9cd2cf 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -5,6 +5,7 @@ from type_check import * from index_tricks import * from function_base import * from shape_base import * +from stride_tricks import * from twodim_base import * from ufunclike import * @@ -24,6 +25,7 @@ __all__ += type_check.__all__ __all__ += index_tricks.__all__ __all__ += function_base.__all__ __all__ += shape_base.__all__ +__all__ += stride_tricks.__all__ __all__ += twodim_base.__all__ __all__ += ufunclike.__all__ __all__ += polynomial.__all__ |
