diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-05 11:15:28 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-14 10:14:05 -0800 |
commit | 0bdc587d6cf5e6806e95d9debcafe62ac9f1d7fa (patch) | |
tree | 1fa53cdf16bdc6eeb2dcc3eec429b6d5cbef5c2b /numpy/lib/utils.py | |
parent | 5eae94f603b9f087c1f0bbc8e1f8fc9f773456d8 (diff) | |
download | numpy-0bdc587d6cf5e6806e95d9debcafe62ac9f1d7fa.tar.gz |
MAINT: addressing review comments
* restored regression comment in
numpy/core/defchararray.py
* fixed the dimensionality of the z
array in all() docstring in
numpy/core/fromnumeric.py; this isn't
detected because it is in-line with
variable memory addresses which are
tagged as variable for refguide
* byte_bounds() docstring adjusted
to reflect non-variable dtype
after reviewer requested removal
of complex dtype
* restore an original comment
in matmul docstring, as requested
by reviewer
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 355b66df9..34d089893 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -199,7 +199,7 @@ def byte_bounds(a): >>> high - low == I.size*I.itemsize True >>> I = np.eye(2); I.dtype - dtype('complex256') # may vary + dtype('float64') >>> low, high = np.byte_bounds(I) >>> high - low == I.size*I.itemsize True |