зеркало из https://github.com/github/ruby.git
* test/cgi/test_cgi_multipart.rb (_read):
performance improvement in windows.[ruby-dev:39650] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25737 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
64486dfd8e
Коммит
f97d8eec10
|
@ -179,11 +179,7 @@ class CGIMultipartTest < Test::Unit::TestCase
|
|||
|
||||
def _read(basename)
|
||||
filename = File.join(File.dirname(__FILE__), 'testdata', basename)
|
||||
if RUBY_VERSION>="1.9"
|
||||
s = File.open(filename, 'r:ascii-8bit') {|f| f.read() }
|
||||
else
|
||||
s = File.open(filename, 'rb') {|f| f.read() }
|
||||
end
|
||||
s = File.open(filename, 'rb') {|f| f.read() }
|
||||
|
||||
return s
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче