diff options
Diffstat (limited to 'numpy/doc/constants.py')
-rw-r--r-- | numpy/doc/constants.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/doc/constants.py b/numpy/doc/constants.py index f9fccabfb..6246813b7 100644 --- a/numpy/doc/constants.py +++ b/numpy/doc/constants.py @@ -133,11 +133,11 @@ add_newdoc('numpy', 'NZERO', 0.0 >>> np.isfinite([np.NZERO]) - array([ True], dtype=bool) + array([ True]) >>> np.isnan([np.NZERO]) - array([False], dtype=bool) + array([False]) >>> np.isinf([np.NZERO]) - array([False], dtype=bool) + array([False]) """) @@ -204,11 +204,11 @@ add_newdoc('numpy', 'PZERO', -0.0 >>> np.isfinite([np.PZERO]) - array([ True], dtype=bool) + array([ True]) >>> np.isnan([np.PZERO]) - array([False], dtype=bool) + array([False]) >>> np.isinf([np.PZERO]) - array([False], dtype=bool) + array([False]) """) |