summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
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
--------