summaryrefslogtreecommitdiff
path: root/numpy/lib/UserArray.py
diff options
context:
space:
mode:
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 243b22d70..b33ff31f1 100644
--- a/numpy/lib/UserArray.py
+++ b/numpy/lib/UserArray.py
@@ -6,7 +6,7 @@
from numpy.core import *
import string
-class UserArray:
+class UserArray(object):
def __init__(self, data, dtype=None, copy=True):
self.array = array(data, dtype, copy)
self.shape = self.array.shape