diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-11-13 23:45:45 -0800 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2017-11-13 23:45:45 -0800 |
commit | ac6b1a902b99e340cf7eeeeb7392c91e38db9dd8 (patch) | |
tree | 589c9f85e52a75a16ed949c14bfa39777e651fc4 /numpy/doc/glossary.py | |
parent | bd80585cdae1d43fabb30ae0e184c2e40deb11e6 (diff) | |
download | numpy-ac6b1a902b99e340cf7eeeeb7392c91e38db9dd8.tar.gz |
ENH: don't show boolean dtype, as it is implied
Diffstat (limited to 'numpy/doc/glossary.py')
-rw-r--r-- | numpy/doc/glossary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/glossary.py b/numpy/doc/glossary.py index d28ece428..9b7d613ba 100644 --- a/numpy/doc/glossary.py +++ b/numpy/doc/glossary.py @@ -233,7 +233,7 @@ Glossary >>> mask = (x > 2) >>> mask - array([False, False, False, True, True], dtype=bool) + array([False, False, False, True, True]) >>> x[mask] = -1 >>> x |