summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
authorggventurini <ggventurini@users.noreply.github.com>2014-04-01 12:47:55 +0200
committerggventurini <ggventurini@users.noreply.github.com>2014-04-01 12:47:55 +0200
commit39de3c865538ac4d32e6fffddb76f6892e7289c8 (patch)
tree1358cc1e302707891868695a3adaf8024f42ff61 /numpy/lib/npyio.py
parent3e61f8626e8dd22ae6627c276963dbe85e0a40ae (diff)
downloadnumpy-39de3c865538ac4d32e6fffddb76f6892e7289c8.tar.gz
Docstring fix for `savetxt`
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r--numpy/lib/npyio.py3
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
--------