summaryrefslogtreecommitdiff
path: root/numpy/doc/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/doc/misc.py')
-rw-r--r--numpy/doc/misc.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/numpy/doc/misc.py b/numpy/doc/misc.py
index 8575a8e4f..9a530fb9e 100644
--- a/numpy/doc/misc.py
+++ b/numpy/doc/misc.py
@@ -15,9 +15,7 @@ Note: cannot use equality to test NaNs. E.g.: ::
>>> myarr = np.array([1., 0., np.nan, 3.])
>>> np.where(myarr == np.nan)
- >>> nan == nan # is always False! Use special numpy functions instead.
-
- >>> np.nan == np.nan
+ >>> np.nan == np.nan # is always False! Use special numpy functions instead.
False
>>> myarr[myarr == np.nan] = 0. # doesn't work
>>> myarr
@@ -86,13 +84,13 @@ Examples:
>>> def errorhandler(errstr, errflag):
... print "saw stupid error!"
>>> np.seterrcall(errorhandler)
-<function err_handler at 0x...>
+ <function err_handler at 0x...>
>>> j = np.seterr(all='call')
>>> np.zeros(5, dtype=np.int32)/0
FloatingPointError: invalid value encountered in divide
saw stupid error!
>>> j = np.seterr(**oldsettings) # restore previous
- # error-handling settings
+ ... # error-handling settings
Interfacing to C:
-----------------