[ruby-core:105671] [Ruby master Bug#12436] newline argument of File.open seems not respected on Windows
From:
"mame (Yusuke Endoh)" <noreply@...>
Date:
2021-10-19 05:55:52 UTC
List:
ruby-core #105671
Issue #12436 has been updated by mame (Yusuke Endoh).
Assignee set to usa (Usaku NAKAMURA)
----------------------------------------
Bug #12436: newline argument of File.open seems not respected on Windows
https://bugs.ruby-lang.org/issues/12436#change-94170
* Author: Eregon (Benoit Daloze)
* Status: Open
* Priority: Normal
* Assignee: usa (Usaku NAKAMURA)
* ruby -v: ruby 2.2.4p230 (2015-12-16 revision 53155) [i386-mingw32]
* Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN
----------------------------------------
~~~ruby
File.open("abc", "wt", newline: :lf) { |f|
f.write "a\n"
f.puts "b"
}
~~~
will create a file with CRLF newlines, ignoring the newline conversion argument.
It should write only LF instead, like on other platforms when the newline conversion is specified.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>