[#3006] CVS repository — "Eugene Scripnik" <hoaz@...>

Hello.

21 messages 2004/06/16
[#3008] Re: CVS repository — ts <decoux@...> 2004/06/16

>>>>> "E" == Eugene Scripnik <hoaz@gala.net> writes:

[#3009] Re: CVS repository — Michal Rokos <michal@...> 2004/06/16

Hi!

[#3057] Ruby 1.8.2 to be released. — matz@... (Yukihiro Matsumoto)

Hi,

20 messages 2004/06/23

A problem about YAML.load and Exception objects.

From: IWATSUKI Hiroyuki <don@...>
Date: 2004-06-24 03:46:04 UTC
List: ruby-core #3080
# This is the same as [ruby-talk:104405].

I found a problem about YAML.load() and exception objects.

% ruby -v -ryaml -e "YAML.load(Exception.new.to_yaml)"
ruby 1.8.2 (2004-06-19) [i386-cygwin]
/usr/local/lib/ruby/1.8/yaml/rubytypes.rb:274:in `object_maker': wrong
number of arguments (3 for 2) (ArgumentError)
        from /usr/local/lib/ruby/1.8/yaml/rubytypes.rb:274
        from /usr/local/lib/ruby/1.8/yaml/rubytypes.rb:272:in `call'
        from -e:1:in `transfer'
        from /usr/local/lib/ruby/1.8/yaml.rb:119:in `load'
        from /usr/local/lib/ruby/1.8/yaml.rb:119:in `load'
        from -e:1

I think so that the latest YAML.object_maker() in lib/yaml.rb was changed.

Index: rubytypes.rb
===================================================================
RCS file: /home/don/ruby/cvs/src/ruby/lib/yaml/rubytypes.rb,v
retrieving revision 1.24
diff -u -p -u -p -r1.24 rubytypes.rb
--- rubytypes.rb        25 May 2004 14:57:25 -0000      1.24
+++ rubytypes.rb        22 Jun 2004 18:43:51 -0000
@@ -271,7 +271,7 @@ end

 YAML.add_ruby_type( /^exception/ ) { |type, val|
     type, obj_class = YAML.read_type_class( type, Exception )
-    o = YAML.object_maker( obj_class, { 'mesg' => val.delete( 'message' ) }, true )
+    o = YAML.object_maker( obj_class, { 'mesg' => val.delete( 'message' ) } )
     val.each_pair { |k,v|
                o.instance_variable_set("@#{k}", v)
        }

Thanks,
-- 
Hiroyuki Iwatsuki <URL:mailto:don@na.rim.or.jp>


In This Thread

Prev Next