From: "theirishpenguin (Declan McGrath)" Date: 2012-05-11T23:57:07+09:00 Subject: [ruby-core:44995] [ruby-trunk - Bug #4603] lib/csv.rb: when the :encoding parameter is not provided, the encoding of CSV data is treated as ASCII-8BIT Issue #4603 has been updated by theirishpenguin (Declan McGrath). Thanks Naruse! ---------------------------------------- Bug #4603: lib/csv.rb: when the :encoding parameter is not provided, the encoding of CSV data is treated as ASCII-8BIT https://bugs.ruby-lang.org/issues/4603#change-26582 Author: nobuoka (yu nobuoka) Status: Closed Priority: Normal Assignee: JEG2 (James Gray) Category: lib Target version: 1.9.2 ruby -v: - =begin This issue is involved in three methods, CSV::open, CSV::read and CSV::foreach. The document of CSV::read says "This method also understands an additional :encoding parameter that you can use to specify the Encoding of the data in the file to be read. You must provide this unless your data is in Encoding::default_external()." However, when the :encoding parameter is not provided, the encoding of the CSV data is treated as ASCII-8BIT. Not as Encoding.default_external. CSV::open and CSV::foreach are also similar. I think the actual behaviour of these methods doesn't conform to the document of these. =end -- http://bugs.ruby-lang.org/