ruby-changes:13284
From: marcandre <ko1@a...>
Date: Wed, 23 Sep 2009 05:05:15 +0900 (JST)
Subject: [ruby-changes:13284] Ruby:r25046 (trunk): * proc.c (umethod_bind, rb_mod_define_method): Fix bug that disallowed methods from singleton classes to be used for UnboundMethod#bind, Kernel#define_singleton_method and Module#define_method, even when that singleton class was of the right kind_of. A patch by Shane O'Brien
marcandre 2009-09-23 05:04:59 +0900 (Wed, 23 Sep 2009) New Revision: 25046 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25046 Log: * proc.c (umethod_bind, rb_mod_define_method): Fix bug that disallowed methods from singleton classes to be used for UnboundMethod#bind, Kernel#define_singleton_method and Module#define_method, even when that singleton class was of the right kind_of. A patch by Shane O'Brien [ruby-core:25632] Modified files: trunk/ChangeLog trunk/proc.c Index: ChangeLog =================================================================== --- ChangeLog (revision 25045) +++ ChangeLog (revision 25046) @@ -1,3 +1,11 @@ +Wed Sep 23 05:03:36 2009 Marc-Andre Lafortune <ruby-core@m...> + + * proc.c (umethod_bind, rb_mod_define_method): Fix bug that + disallowed methods from singleton classes to be used for + UnboundMethod#bind, Kernel#define_singleton_method and + Module#define_method, even when that singleton class was of the right + kind_of. A patch by Shane O'Brien [ruby-core:25632] + Tue Sep 22 16:34:33 2009 Nobuyoshi Nakada <nobu@r...> * st.c (st_table_entry, st_get_key): use st_index_t. Index: proc.c =================================================================== --- proc.c (revision 25045) +++ proc.c (revision 25046) @@ -1249,12 +1249,12 @@ if (rb_obj_is_method(body)) { struct METHOD *method = (struct METHOD *)DATA_PTR(body); VALUE rclass = method->rclass; - if (rclass != mod) { + if (rclass != mod && !RTEST(rb_class_inherited_p(mod, rclass))) { if (FL_TEST(rclass, FL_SINGLETON)) { rb_raise(rb_eTypeError, "can't bind singleton method to a different class"); } - if (!RTEST(rb_class_inherited_p(mod, rclass))) { + else { rb_raise(rb_eTypeError, "bind argument must be a subclass of %s", rb_class2name(rclass)); @@ -1481,12 +1481,13 @@ struct METHOD *data, *bound; TypedData_Get_Struct(method, struct METHOD, &method_data_type, data); - if (data->rclass != CLASS_OF(recv)) { + + if (data->rclass != CLASS_OF(recv) && !rb_obj_is_kind_of(recv, data->rclass)) { if (FL_TEST(data->rclass, FL_SINGLETON)) { rb_raise(rb_eTypeError, "singleton method called for a different object"); } - if (!rb_obj_is_kind_of(recv, data->rclass)) { + else { rb_raise(rb_eTypeError, "bind argument must be an instance of %s", rb_class2name(data->rclass)); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/