From 112ce58723a37bb6ebca34cae42476e96bb8eede Mon Sep 17 00:00:00 2001 From: Eugene Prilepin Date: Thu, 5 Sep 2019 12:23:45 +0300 Subject: DOC: add the reference to 'printoptions' We add the reference to 'printoptions' context manager in "See Also" section in 'set_printoptions' and 'get_printoptions' functions. These changes improve the documentation and make it easy to search. --- numpy/core/arrayprint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/core/arrayprint.py') 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() -- cgit v1.2.1