diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 15:48:38 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 15:48:38 +0000 |
commit | 5e385c922b18cb35fc02f244bc59e9cdf96e9f6c (patch) | |
tree | ebc77b91820d89d337732bff2ea06e505d43cb49 /numpy/numarray/functions.py | |
parent | 3e3dd665d89496da053f76f120d504e9f1bf1699 (diff) | |
download | numpy-5e385c922b18cb35fc02f244bc59e9cdf96e9f6c.tar.gz |
Fix import problem
Diffstat (limited to 'numpy/numarray/functions.py')
-rw-r--r-- | numpy/numarray/functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/functions.py b/numpy/numarray/functions.py index dbea74f81..3d223959f 100644 --- a/numpy/numarray/functions.py +++ b/numpy/numarray/functions.py @@ -37,7 +37,7 @@ __all__ = ['asarray', 'ones', 'zeros', 'array', 'where'] __all__ += ['vdot', 'dot', 'matrixmultiply', 'ravel', 'indices', 'arange', 'concatenate'] -from numpy import dot as matrixmultiply, dot, vdot, ravel +from numpy import dot as matrixmultiply, dot, vdot, ravel, concatenate def array(sequence=None, typecode=None, copy=1, savespace=0, type=None, shape=None, dtype=None): |