summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-08 15:48:38 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-08 15:48:38 +0000
commit5e385c922b18cb35fc02f244bc59e9cdf96e9f6c (patch)
treeebc77b91820d89d337732bff2ea06e505d43cb49 /numpy/numarray
parent3e3dd665d89496da053f76f120d504e9f1bf1699 (diff)
downloadnumpy-5e385c922b18cb35fc02f244bc59e9cdf96e9f6c.tar.gz
Fix import problem
Diffstat (limited to 'numpy/numarray')
-rw-r--r--numpy/numarray/functions.py2
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):