diff options
author | ggventurini <ggventurini@users.noreply.github.com> | 2014-04-01 12:47:55 +0200 |
---|---|---|
committer | ggventurini <ggventurini@users.noreply.github.com> | 2014-04-01 12:47:55 +0200 |
commit | 39de3c865538ac4d32e6fffddb76f6892e7289c8 (patch) | |
tree | 1358cc1e302707891868695a3adaf8024f42ff61 /numpy/lib/npyio.py | |
parent | 3e61f8626e8dd22ae6627c276963dbe85e0a40ae (diff) | |
download | numpy-39de3c865538ac4d32e6fffddb76f6892e7289c8.tar.gz |
Docstring fix for `savetxt`
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index f69ca0c73..5a49a2533 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -913,6 +913,8 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', delimiter : str, optional Character separating columns. newline : str, optional + Character separating lines. + .. versionadded:: 1.5.0 header : str, optional String that will be written at the beginning of the file. @@ -929,7 +931,6 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', .. versionadded:: 1.7.0 - Character separating lines. See Also -------- |