diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-16 14:49:27 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-16 14:49:27 +0000 |
commit | 9b0c090eaa73c7646dbc163cf2ff85a59e2109dc (patch) | |
tree | 2791e36ae092567b76f916286d7ccf93d7f2c958 /numpy/oldnumeric/functions.py | |
parent | fcee1ad856089a7ecb7b6865d280c0273dacb638 (diff) | |
download | numpy-9b0c090eaa73c7646dbc163cf2ff85a59e2109dc.tar.gz |
Fix error in oldnumeric.empty
Diffstat (limited to 'numpy/oldnumeric/functions.py')
-rw-r--r-- | numpy/oldnumeric/functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/functions.py b/numpy/oldnumeric/functions.py index 4e3f12639..f03f2fb21 100644 --- a/numpy/oldnumeric/functions.py +++ b/numpy/oldnumeric/functions.py @@ -69,7 +69,7 @@ def identity(n,typecode='l', dtype=None): def empty(shape, typecode='l', dtype=None): dtype = convtypecode(typecode, dtype) - return mu.empty(shape, dtype, order) + return mu.empty(shape, dtype) def array(sequence, typecode=None, copy=1, savespace=0, dtype=None): dtype = convtypecode2(typecode, dtype) |