Skip to content

Commit

Permalink
DOC:Update the description of set_printoptions in quickstart doc
Browse files Browse the repository at this point in the history
Quickstart guide recommends np.set_printoptions(threshold=np.nan) but that fails.
So changed that to np.set_printoptions(threshold=sys.maxsize)

Closes #13900
  • Loading branch information
sameshl committed Jul 9, 2019
1 parent c920f98 commit c19df4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/user/quickstart.rst
Expand Up @@ -270,7 +270,7 @@ can change the printing options using ``set_printoptions``.

::

>>> np.set_printoptions(threshold=np.nan)
>>> np.set_printoptions(threshold=sys.maxsize) # sys module should be imported


Basic Operations
Expand Down

0 comments on commit c19df4d

Please sign in to comment.