summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.py
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2007-10-29 14:58:18 +0000
committerJarrod Millman <millman@berkeley.edu>2007-10-29 14:58:18 +0000
commit0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26 (patch)
treec7609a2a685fd5bff235d812b8c5705621216f4c /numpy/lib/utils.py
parentaa3c27cce3d0625f719b812c9e6b0aa73114c612 (diff)
downloadnumpy-0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26.tar.gz
ran reindent.py to clean up whitespace
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r--numpy/lib/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index fa69e6718..386506bd6 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -118,7 +118,7 @@ def byte_bounds(a):
high is just *past* the last byte
If the array is not single-segment, then it may not actually
- use every byte between these bounds.
+ use every byte between these bounds.
The array provided must conform to the Python-side of the array interface
"""
@@ -140,7 +140,7 @@ def byte_bounds(a):
a_high += (shape-1)*stride
a_high += bytes_a
return a_low, a_high
-
+
def may_share_memory(a, b):
"""Determine if two arrays can share memory
@@ -275,7 +275,7 @@ def info(object=None,maxwidth=76,output=sys.stdout,toplevel='numpy'):
Example:
>>> from numpy import *
>>> info(polyval) # doctest: +SKIP
-
+
polyval(p, x)
Evaluate the polymnomial p at x.