8000 Ticket 1236 suggested fix. by pletnes · Pull Request #127 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

Ticket 1236 suggested fix. #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
added version numbers of new kwargs
  • Loading branch information
pletnes committed Aug 15, 2011
commit 046f2f726bb37f8c8f247d8c7bccdbdb91e55a53
3 changes: 3 additions & 0 deletions numpy/lib/npyio.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,12 +856,15 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='',
.. versionadded:: 1.5.0
header : str, optional
String that will be written at the beginning of the file.
.. versionadded:: 2.0.0
footer : str, optional
String that will be written at the end of the file.
.. versionadded:: 2.0.0
comments : str, optional
String that will be prepended to the ``header`` and ``footer`` strings,
to mark them as comments. Default: '# ', as expected by e.g.
``numpy.loadtxt``.
.. versionadded:: 2.0.0

Character separating lines.

Expand Down
0