diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | lib/cgi.rb | 4 | ||||
-rw-r--r-- | lib/complex.rb | 4 | ||||
-rw-r--r-- | lib/singleton.rb | 2 |
4 files changed, 13 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Wed Apr 23 13:31:10 2003 Yukihiro Matsumoto <[email protected]> + + * lib/cgi.rb (CGI::QueryExtension::[]): always return Value + object. + Wed Apr 23 08:39:27 2003 Nobuyoshi Nakada <[email protected]> * ext/zlib/extconf.rb: bccwin32 is win32 too. @@ -5,7 +10,7 @@ Wed Apr 23 08:39:27 2003 Nobuyoshi Nakada <[email protected]> Tue Apr 22 20:58:00 2003 Takaaki Uematsu <[email protected]> * ruby.c: don't call VirtualQuery in ruby_init_loadpath() - on mswince. + on mswince. Tue Apr 22 19:08:53 2003 Nobuyoshi Nakada <[email protected]> @@ -17,6 +22,7 @@ Tue Apr 22 09:20:40 2003 Yukihiro Matsumoto <[email protected]> * parse.y (arg_ambiguous): hopefully better message. * lib/cgi.rb (CGI::QueryExtension::initialize_query): to_ary + removed. Tue Apr 22 06:06:22 2003 Tanaka Akira <[email protected]> diff --git a/lib/cgi.rb b/lib/cgi.rb index 7dffdd9a33..dfeea5fc47 100644 --- a/lib/cgi.rb +++ b/lib/cgi.rb @@ -957,7 +957,9 @@ END end def [](key) - Value.new(@params[key][0]) + value = @params[key][0] + value ||= "" + Value.new(value) end def keys(*args) diff --git a/lib/complex.rb b/lib/complex.rb index dda2ad2006..90916d125e 100644 --- a/lib/complex.rb +++ b/lib/complex.rb @@ -13,7 +13,6 @@ # # Complex numbers can be created in the following manner: # - <tt>Complex(a, b)</tt> -# - <tt>Complex.new(a, b)</tt> # - <tt>Complex.polar(radius, theta)</tt> # # Additionally, note the following: @@ -66,7 +65,8 @@ class Complex < Numeric def Complex.polar(r, theta) Complex(r*Math.cos(theta), r*Math.sin(theta)) end - + + private_class_method :new # # Creates a +Complex+ number <tt>a</tt>+<tt>b</tt><i>i</i>. # diff --git a/lib/singleton.rb b/lib/singleton.rb index 147b04187c..939159496b 100644 --- a/lib/singleton.rb +++ b/lib/singleton.rb @@ -142,7 +142,7 @@ module Singleton @__instance__ = new ensure if @__instance__ - def self.instance() @__instance__ end + define_method(:instance) {@__instance__} else @__instance__ = nil # failed instance creation end |