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 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
--------