diff options
Diffstat (limited to 'numpy/lib/UserArray.py')
-rw-r--r-- | numpy/lib/UserArray.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |