diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-09-06 08:31:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-06 08:31:29 +0200 |
commit | e4e12cba59134e7ec2c4e98b98a7fa162b590f66 (patch) | |
tree | 7967b81d610b025f0d9e81e684c697138259dd3f | |
parent | 3cd8933b1f72a29940323f093bf8334b434d9015 (diff) | |
parent | 112ce58723a37bb6ebca34cae42476e96bb8eede (diff) | |
download | numpy-e4e12cba59134e7ec2c4e98b98a7fa162b590f66.tar.gz |
Merge pull request #14426 from espdev/see-also-printoptions
DOC: add the reference to 'printoptions'
-rw-r--r-- | numpy/core/arrayprint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py index 5761c4875..b1310a737 100644 --- a/numpy/core/arrayprint.py +++ b/numpy/core/arrayprint.py @@ -194,7 +194,7 @@ def set_printoptions(precision=None, threshold=None, edgeitems=None, See Also -------- - get_printoptions, set_string_function, array2string + get_printoptions, printoptions, set_string_function, array2string Notes ----- @@ -285,7 +285,7 @@ def get_printoptions(): See Also -------- - set_printoptions, set_string_function + set_printoptions, printoptions, set_string_function """ return _format_options.copy() |