summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/oldnumeric/misc.py')
-rw-r--r--numpy/oldnumeric/misc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/oldnumeric/misc.py b/numpy/oldnumeric/misc.py
index 4b43f3985..9d5810a13 100644
--- a/numpy/oldnumeric/misc.py
+++ b/numpy/oldnumeric/misc.py
@@ -31,12 +31,12 @@ from array_printer import array2string
class Unpickler(pickle.Unpickler):
def __init__(self, *args, **kwds):
- raise NotImplemented
+ raise NotImplementedError
def load_array(self):
- raise NotImplemented
+ raise NotImplementedError
class Pickler(pickle.Pickler):
def __init__(self, *args, **kwds):
- raise NotImplemented
+ raise NotImplementedError
def save_array(self, object):
- raise NotImplemented
+ raise NotImplementedError