summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2007-02-02 00:55:40 +0000
committerTravis Oliphant <oliphant@enthought.com>2007-02-02 00:55:40 +0000
commita36ce17c317f8f56f44242714e33b16b37e051ea (patch)
tree59c816d294a140385a2a058e5bcf7efc91d41e02 /numpy/lib/utils.py
parente122f0798a686a41616908e071531790e84e5414 (diff)
downloadnumpy-a36ce17c317f8f56f44242714e33b16b37e051ea.tar.gz
Fix a comment string.
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r--numpy/lib/utils.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index ce2c0a593..ca9ae28aa 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -121,9 +121,6 @@ def memory_bounds(a):
nd_a = len(ashape)
bytes_a = int(ai['typestr'][2:])
- # a_low points to first element of array
- # a_high points to last element of the array
-
a_low = a_high = a_data
if astrides is None: # contiguous case
a_high += product(ashape, dtype=int)*bytes_a