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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index 1c834e7f2..355b66df9 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -198,8 +198,8 @@ def byte_bounds(a):
>>> low, high = np.byte_bounds(I)
>>> high - low == I.size*I.itemsize
True
- >>> I = np.eye(2, dtype='G'); I.dtype
- dtype('complex256')
+ >>> I = np.eye(2); I.dtype
+ dtype('complex256') # may vary
>>> low, high = np.byte_bounds(I)
>>> high - low == I.size*I.itemsize
True