diff options
author | Jarrod Millman <millman@berkeley.edu> | 2009-11-13 17:49:06 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2009-11-13 17:49:06 +0000 |
commit | f07c79d3709a7f81219abc3c516fd772f469c167 (patch) | |
tree | eaff2baba0176a7c41e749fd61b88a421dcfb188 /numpy/core/arrayprint.py | |
parent | 3122ee546fc0617e195aeb288abe65b9ae95d983 (diff) | |
download | numpy-f07c79d3709a7f81219abc3c516fd772f469c167.tar.gz |
first set of checkins from the doc editor
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r-- | numpy/core/arrayprint.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py index df5662b1b..fb83af3fb 100644 --- a/numpy/core/arrayprint.py +++ b/numpy/core/arrayprint.py @@ -122,8 +122,8 @@ def get_printoptions(): - edgeitems : int - linewidth : int - suppress : bool - - nanstr : string - - infstr : string + - nanstr : str + - infstr : str For a full description of these options, see `set_printoptions`. @@ -253,9 +253,9 @@ def array2string(a, max_line_width = None, precision = None, suppress_small : bool, optional Represent very small numbers as zero. A number is "very small" if it is smaller than the current printing precision. - separator : string, optional + separator : str, optional Inserted between elements. - prefix : string, optional + prefix : str, optional An array is typically printed as:: 'prefix(' + array2string(a) + ')' |