summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/functions.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-16 14:49:27 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-16 14:49:27 +0000
commit9b0c090eaa73c7646dbc163cf2ff85a59e2109dc (patch)
tree2791e36ae092567b76f916286d7ccf93d7f2c958 /numpy/oldnumeric/functions.py
parentfcee1ad856089a7ecb7b6865d280c0273dacb638 (diff)
downloadnumpy-9b0c090eaa73c7646dbc163cf2ff85a59e2109dc.tar.gz
Fix error in oldnumeric.empty
Diffstat (limited to 'numpy/oldnumeric/functions.py')
-rw-r--r--numpy/oldnumeric/functions.py2
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)