aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-22 08:09:58 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-22 08:09:58 +0000
commit7ff7bcbf9dbb0f22a9802a7b3474c59c9bbd0b70 (patch)
treefa6ca2b3d705a9ea9ea67442b20c2e432dc647d6 /lib
parent7cca6c25f0682053b861fa987fa5b415346d044f (diff)
downloadruby-7ff7bcbf9dbb0f22a9802a7b3474c59c9bbd0b70.tar.gz
* enum.c (inject_i): use rb_yield_values.
* enum.c (each_with_index_i): ditto. * eval.c (rb_yield_splat): new function to call "yield *values". * string.c (rb_str_scan): use rb_yield_splat(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi.rb6
-rw-r--r--lib/singleton.rb10
2 files changed, 11 insertions, 5 deletions
diff --git a/lib/cgi.rb b/lib/cgi.rb
index ee315cc48d..27dd83da01 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -973,7 +973,7 @@ class CGI
bufsize = 10 * 1024
# start multipart/form-data
- stdinput.binmode
+ stdinput.binmode if defined? stdinput.binmode
boundary_size = boundary.size + EOL.size
content_length -= boundary_size
status = stdinput.read(boundary_size)
@@ -997,7 +997,7 @@ class CGI
body = Tempfile.new("CGI")
end
end
- body.binmode
+ body.binmode if defined? body.binmode
until head and /#{boundary}(?:#{EOL}|--)/n.match(buf)
@@ -1123,7 +1123,7 @@ class CGI
env_table['QUERY_STRING'] or ""
end
when "POST"
- stdinput.binmode
+ stdinput.binmode if defined? stdinput.binmode
stdinput.read(Integer(env_table['CONTENT_LENGTH'])) or ''
else
read_from_cmdline
diff --git a/lib/singleton.rb b/lib/singleton.rb
index 30990b79bd..2954bfa153 100644
--- a/lib/singleton.rb
+++ b/lib/singleton.rb
@@ -95,7 +95,10 @@ class << Singleton
@__instance__ = new
ensure
if @__instance__
- def self.instance; @__instance__ end
+ class <<self
+ remove_method :instance
+ def instance; @__instance__ end
+ end
else
@__instance__ = nil # failed instance creation
end
@@ -109,7 +112,10 @@ class << Singleton
@__instance__ = new
ensure
if @__instance__
- def self.instance; @__instance__ end
+ class <<self
+ remove_method :instance
+ def instance; @__instance__ end
+ end
else
@__instance__ = nil
end