diff options
author | David Cournapeau <cournape@gmail.com> | 2009-12-08 07:33:15 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-12-08 07:33:15 +0000 |
commit | 28be4a6b073efb779c2b488601b68272831c2b9d (patch) | |
tree | 25229cefc77380b4bca3900948632d686c7ec54c | |
parent | 20f3fef417dc951af305f32f42d99174570f5069 (diff) | |
download | numpy-28be4a6b073efb779c2b488601b68272831c2b9d.tar.gz |
BUG: numpy.ma set fpu exception error state to ignore all at import time.
-rw-r--r-- | numpy/ma/core.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index a6cd94e44..506749ba3 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -104,10 +104,6 @@ import warnings MaskType = np.bool_ nomask = MaskType(0) -np.seterr(all='ignore') - - - def doc_note(initialdoc, note): """ Adds a Notes section to an existing docstring. |