Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #1085 +/- ##
==========================================
+ Coverage 68.00% 68.76% +0.75%
==========================================
Files 404 408 +4
Lines 12935 13697 +762
Branches 1392 1543 +151
==========================================
+ Hits 8797 9419 +622
- Misses 4138 4278 +140 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Thanks for this @fiolj. Would you mind reverting the changes not related to the implementation? (styling) There are too many and it renders difficult to read through the PR. You can check the style_guide for info https://github.com/fortran-lang/stdlib/blob/master/STYLE_GUIDE.md One thing, white spaces in-between parentheses and an intrinsic function are not recommended ( |
|
Thanks @jalvesz, I've fixed the formatting |
|
Reviewing the arguments of Currently, we have the order of |
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
Added: - comments with intent of variable `fout` - stop the program if unit file is not open - clean-up comments
Added clarification of use with filename and unit. Also added an example
Co-authored-by: José Alves <102541118+jalvesz@users.noreply.github.com>
Co-authored-by: José Alves <102541118+jalvesz@users.noreply.github.com>
Co-authored-by: José Alves <102541118+jalvesz@users.noreply.github.com>
Done! |
|
hmmmm, I am puzzled. Why are all the changes in previously merged PRs present in |
Yes, I was too. It happened when I did the rebase (I usually just do a merge of the master). |
|
@fiolj Strange. I usually merge the branches, too. Maybe to keep things clean, could you create a new branch from the last commit of this branch prior rebasing it, merge it with upstream/master and than open a new PR? |
|
Closed as #1177 has been merged |
This PR aims to add optional arguments to
savetxt, that behave similar to numpy's savetxt.This is associated with Issue 263 and this discussion thread.
It add the possibility of supplying the unit of an open file instead of a filename (which could be used for
output_unitfor instance)This implementation is quite simple. The main changes are: