From 9b0c090eaa73c7646dbc163cf2ff85a59e2109dc Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Wed, 16 Aug 2006 14:49:27 +0000 Subject: Fix error in oldnumeric.empty --- numpy/oldnumeric/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/oldnumeric/functions.py') 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) -- cgit v1.2.1