Ruby3.0 is around 10%-20% slower than Ruby2.7.2 when parsing and aggregating a large CSV file. The script is here: ```ruby require "csv" name_to_cost = Hash.new(0) CSV.foreach(ARGV[0], headers: true) do |row| name_to_cost[r...okkez (okkez _)
Applied in changeset trunk|r66145. ---------- time.rb: remove the unsupported formatting options from the document [ci skip] Time.strptime does not support %3N, %6N, and %9N. close [Bug #15322]okkez (okkez _)
Time.strptime does not support %3N, %6N, and %9N. close [Bug #15322] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66145 b2dd03c8-39d4-4d8f-98ff-823fe69b080eokkez (okkez _)
`Zlib::GzipReader#read` does not support 2nd argument for output buffer. It is not same as `IO#read` and `StringIO#read`. It is useful for duck typing to copy both plain files and gzipped files. See also * https://docs.ruby-lang...okkez (okkez _)