diff options
author | cookedm <cookedm@localhost> | 2006-03-10 21:31:27 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-03-10 21:31:27 +0000 |
commit | bf57380caa818b73a4c41409de6ff260425f9bb6 (patch) | |
tree | b2c42e0fde172de5def0c91811845808c00e296e /numpy/lib/info.py | |
parent | f2db317c1fad63f1c85944ba8443b465e32774dc (diff) | |
download | numpy-bf57380caa818b73a4c41409de6ff260425f9bb6.tar.gz |
Run reindent.py (script distributed with Python) over the source to remove extraneous whitespace
Diffstat (limited to 'numpy/lib/info.py')
-rw-r--r-- | numpy/lib/info.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/info.py b/numpy/lib/info.py index bf6878b73..0944fa9b5 100644 --- a/numpy/lib/info.py +++ b/numpy/lib/info.py @@ -1,6 +1,6 @@ __doc_title__ = """Basic functions used by several sub-packages and useful to have in the main name-space.""" -__doc__ = __doc_title__ + """ +__doc__ = __doc_title__ + """ Type handling ============== @@ -15,7 +15,7 @@ isneginf -- Tests for negative infinity ---| isposinf -- Tests for positive infinity | isnan -- Tests for nans |---- array results isinf -- Tests for infinity | -isfinite -- Tests for finite numbers ---| +isfinite -- Tests for finite numbers ---| isscalar -- True if argument is a scalar nan_to_num -- Replaces NaN's with 0 and infinities with large numbers cast -- Dictionary of functions to force cast to each type @@ -80,7 +80,7 @@ flipud -- 2D array with rows flipped rot90 -- Rotate a 2D array a multiple of 90 degrees eye -- Return a 2D array with ones down a given diagonal diag -- Construct a 2D array from a vector, or return a given - diagonal from a 2D array. + diagonal from a 2D array. mat -- Construct a Matrix bmat -- Build a Matrix from blocks |