summaryrefslogtreecommitdiff
path: root/numpy/core/ma.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/ma.py')
-rw-r--r--numpy/core/ma.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/ma.py b/numpy/core/ma.py
index 2f0f7224d..19c29a88c 100644
--- a/numpy/core/ma.py
+++ b/numpy/core/ma.py
@@ -22,7 +22,7 @@ ufunc_domain = {}
ufunc_fills = {}
MaskType=bool_
-nomask = None # To be changed to MaskType(0)
+nomask = MaskType(0)
divide_tolerance = 1.e-35
class MAError (Exception):