1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/open-uri.rb: abolish mod === tempfile to avoid a problem

[ruby-dev:26967].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9093 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2005-09-07 03:58:39 +00:00
parent 17a4e4b1ad
commit 5197f6773a
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Wed Sep 7 12:55:08 2005 Tanaka Akira <akr@m17n.org>
* lib/open-uri.rb: abolish mod === tempfile to avoid a problem
[ruby-dev:26967].
Wed Sep 7 10:45:15 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_thread_switch): convert all exceptions to

View file

@ -314,14 +314,14 @@ module OpenURI
require 'tempfile'
io = Tempfile.new('open-uri')
io.binmode
Meta.init io, @io if Meta === @io
Meta.init io, @io if @io.respond_to? :meta
io << @io.string
@io = io
end
end
def io
Meta.init @io unless Meta === @io
Meta.init @io unless @io.respond_to? :meta
@io
end
end