summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
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):