diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-04-11 15:16:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-11 15:16:33 +0100 |
commit | f59df3a37f63e3cb1d4580a6885efd057b79ef43 (patch) | |
tree | 5e789117cc6a12c0fc716060de27c5f46ceac7b3 /doc/source/user | |
parent | 19a90d06289d7117ba6531cbc532ea5db7b44073 (diff) | |
download | numpy-f59df3a37f63e3cb1d4580a6885efd057b79ef43.tar.gz |
DOC: Fix incorrect call to set_printoptions
Fixes #2752
Diffstat (limited to 'doc/source/user')
-rw-r--r-- | doc/source/user/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index f69eb3ace..7295d1aca 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -274,7 +274,7 @@ can change the printing options using ``set_printoptions``. :: - >>> np.set_printoptions(threshold='nan') + >>> np.set_printoptions(threshold=np.nan) Basic Operations |