diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2020-09-16 13:08:11 +0100 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2020-09-16 15:09:11 +0100 |
commit | 5c3f10061f39a7858a5f2c6cd48773abe3252e48 (patch) | |
tree | 38b7e4ef1a47a4dedb1160a56b486271a2338079 /numpy | |
parent | 3a06142f5e26c6294ffd5fa24cd450addef45e13 (diff) | |
download | numpy-5c3f10061f39a7858a5f2c6cd48773abe3252e48.tar.gz |
DOC: Fix broken references and make the tables a little clearer
`types.BooleanType` and similar names were python2 things that no longer exist
`unicode` also no longer exists, and is now `str`
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/numerictypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numerictypes.py b/numpy/core/numerictypes.py index 632f2b8cd..e705dd3ea 100644 --- a/numpy/core/numerictypes.py +++ b/numpy/core/numerictypes.py @@ -374,8 +374,8 @@ def issubdtype(arg1, arg2): See Also -------- + :ref:`arrays.scalars` : Overview of the numpy type hierarchy. issubsctype, issubclass_ - numpy.core.numerictypes : Overview of numpy type hierarchy. Examples -------- |