diff options
author | logeaux <36168460+logeaux@users.noreply.github.com> | 2018-07-14 22:34:53 -0500 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2018-07-14 22:34:53 -0500 |
commit | e71f25655dae774cdd7e4205ca7afd276b286a76 (patch) | |
tree | 237999caee3490298cd9cd0b4315cd223d566582 /numpy/core/arrayprint.py | |
parent | a1d03141a6acac5a6187a5c2f9d8002cb297bd93 (diff) | |
download | numpy-e71f25655dae774cdd7e4205ca7afd276b286a76.tar.gz |
DOC: Updated array2string description (#11571)
* DOC: Updated array2string description
* DOC: Updated array2string description
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r-- | numpy/core/arrayprint.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py index 6d15cb23f..a4b5aecc3 100644 --- a/numpy/core/arrayprint.py +++ b/numpy/core/arrayprint.py @@ -528,6 +528,8 @@ def array2string(a, max_line_width=None, precision=None, The output is left-padded by the length of the prefix string, and wrapping is forced at the column ``max_line_width - len(suffix)``. + It should be noted that the content of prefix and suffix strings are + not included in the output. style : _NoValue, optional Has no effect, do not use. |