From ed3c89301ec5236a49ddb91d2325e38a01b9691a Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Thu, 28 Dec 2023 14:05:19 -0700 Subject: [PATCH] DOC: remove unnecessary doctest skip --- doc/source/user/basics.types.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/user/basics.types.rst b/doc/source/user/basics.types.rst index 0bed8a1b48fa..342a2199634d 100644 --- a/doc/source/user/basics.types.rst +++ b/doc/source/user/basics.types.rst @@ -65,9 +65,9 @@ dtype objects also contain information about the type, such as its bit-width and its byte-order. The data type can also be used indirectly to query properties of the type, such as whether it is an integer:: - >>> d = np.dtype(int) - >>> d #doctest: +SKIP - dtype('int32') + >>> d = np.dtype(int64) + >>> d + dtype('int64') >>> np.issubdtype(d, np.integer) True