summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.py
diff options
context:
space:
mode:
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.