From 216f071ab060a6f08c22666aea33f7095f079d1e Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Thu, 6 Jul 2006 16:55:18 +0000 Subject: Fix UserArray. --- numpy/lib/UserArray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/UserArray.py') diff --git a/numpy/lib/UserArray.py b/numpy/lib/UserArray.py index 53845d068..0d74450d5 100644 --- a/numpy/lib/UserArray.py +++ b/numpy/lib/UserArray.py @@ -11,7 +11,7 @@ from numpy.core import array, asarray, absolute, add, subtract, multiply, \ class UserArray(object): def __init__(self, data, dtype=None, copy=True): - self.array = array(data, dtype, copy) + self.array = array(data, dtype, copy=copy) def __repr__(self): if len(self.shape) > 0: -- cgit v1.2.1