summaryrefslogtreecommitdiff
path: root/numpy/lib/UserArray.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-07-06 16:55:18 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-07-06 16:55:18 +0000
commit216f071ab060a6f08c22666aea33f7095f079d1e (patch)
tree9d70df14a55d99d9e09db00cc1e3c2c02ce786b8 /numpy/lib/UserArray.py
parentfb83db13965023c3f82eef0cf1b8e8b18789f5b9 (diff)
downloadnumpy-216f071ab060a6f08c22666aea33f7095f079d1e.tar.gz
Fix UserArray.
Diffstat (limited to 'numpy/lib/UserArray.py')
-rw-r--r--numpy/lib/UserArray.py2
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: