summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
authorJulian Taylor <juliantaylor108@gmail.com>2014-05-26 23:02:52 +0200
committerJulian Taylor <juliantaylor108@gmail.com>2014-05-26 23:02:52 +0200
commit5fe26e6b0369cec520e6f81082059078ec28f22d (patch)
tree1ece10331b736e3907828a818a2c6d031eef798d /numpy/lib/npyio.py
parente4dc0c9c0a094844e2db60685a59eebe9b6a2bbb (diff)
parent39de3c865538ac4d32e6fffddb76f6892e7289c8 (diff)
downloadnumpy-5fe26e6b0369cec520e6f81082059078ec28f22d.tar.gz
Merge pull request #4574 from ggventurini/master
DOC: Docstring fix for `savetxt` (minor change)
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 98b4b6e35..d7f3de217 100644
--- a/numpy/lib/npyio.py
+++ b/numpy/lib/npyio.py
@@ -918,6 +918,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.
@@ -934,7 +936,6 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='',
.. versionadded:: 1.7.0
- Character separating lines.
See Also
--------