Skip to content

Commit

Permalink
DOC: remove unnecessary doctest skip
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Dec 28, 2023
1 parent 1c0b2c4 commit ed3c893
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/source/user/basics.types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ed3c893

Please sign in to comment.