From bd380f25fd23a0e7b31f72a7cc1e32fc9f522992 Mon Sep 17 00:00:00 2001 From: shugo Date: Wed, 13 Aug 2008 07:25:05 +0000 Subject: * object.c (rb_obj_untrusted): new method Object#untrusted?. (rb_obj_untrust): new method Object#untrust. (rb_obj_trust): new method Object#trust. * array.c, debug.c, time.c, include/ruby/ruby.h, re.c, variable.c, string.c, io.c, dir.c, vm_method.c, struct.c, class.c, hash.c, ruby.c, marshal.c: fixes for Object#untrusted?. * test/ruby/test_module.rb, test/ruby/test_array.rb, test/ruby/test_object.rb, test/ruby/test_string.rb, test/ruby/test_marshal.rb, test/ruby/test_hash.rb: added tests for Object#untrusted?. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 14be731f1..c98ecad64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Wed Aug 13 16:02:14 2008 Shugo Maeda + + * object.c (rb_obj_untrusted): new method Object#untrusted?. + (rb_obj_untrust): new method Object#untrust. + (rb_obj_trust): new method Object#trust. + + * array.c, debug.c, time.c, include/ruby/ruby.h, re.c, variable.c, + string.c, io.c, dir.c, vm_method.c, struct.c, class.c, hash.c, + ruby.c, marshal.c: fixes for Object#untrusted?. + + * test/ruby/test_module.rb, test/ruby/test_array.rb, + test/ruby/test_object.rb, test/ruby/test_string.rb, + test/ruby/test_marshal.rb, test/ruby/test_hash.rb: added tests for + Object#untrusted?. + Wed Aug 13 16:13:58 2008 NARUSE, Yui * test/ruby/test_m17n.rb: follow EncodingCompatibilityError. -- cgit