From: merch-redmine@... Date: 2019-10-15T02:45:30+00:00 Subject: [ruby-core:95323] [Ruby master Bug#15608] What should be the correct output for Method#inspect with singleton methods? Issue #15608 has been updated by jeremyevans0 (Jeremy Evans). File method-inspect-15608.patch added Attached is a patch that fixes this issue. @wanabe was correct that we need to use `data->iclass` if available. However, changing just that breaks some existing tests. To keep existing tests working but also fix this issue, if the object has a singleton class, but the method was not defined on the singleton class, continue to use `data->klass`, but skip the singleton class and included modules. Example: ```ruby class C def foo end end class D < C end d = D.new p d.method(:foo) d.singleton_class p d.method(:foo) ``` Result after patch: ``` # # ``` ---------------------------------------- Bug #15608: What should be the correct output for Method#inspect with singleton methods? https://bugs.ruby-lang.org/issues/15608#change-82030 * Author: Eregon (Benoit Daloze) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: ruby 2.6.1p33 (2019-01-30 revision 66950) [x86_64-linux] * Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN ---------------------------------------- bug.rb: ```ruby class C def foo end end obj = C.new class << obj alias bar foo end p obj.method(:foo).owner p obj.method(:foo) raise unless obj.method(:foo).owner == C p obj.method(:bar).owner p obj.method(:bar) raise unless obj.method(:bar).owner == obj.singleton_class ``` ``` $ chruby 2.0.0 $ ruby -v bug.rb ruby 2.0.0p648 (2015-12-16) [x86_64-linux] C # #> # $ chruby 2.3.8 $ ruby -v bug.rb ruby 2.3.8p459 (2018-10-18 revision 65136) [x86_64-linux] C # #> #.bar(foo)> $ chruby 2.4.5 $ ruby -v bug.rb ruby 2.4.5p335 (2018-10-18 revision 65137) [x86_64-linux] C #.foo> #> #.bar(foo)> Same for 2.5.3 and 2.6.1 ``` I think Method#inspect should show on which Module the method is defined (`Method#owner`), and only singleton methods should be shown as `receiver.method`, so: ``` C # #> #.bar(foo)> ``` Which only Ruby 2.3 does interestingly. --- What's the meaning of the `C1(C2)` notation? It seems to show `"#{receiver.class}(#{owner})` or `"#{receiver.singleton_class if receiver has a sclass}` depending on the version: ```ruby class D < C end d = D.new p d.method(:foo) d.singleton_class p d.method(:foo) ``` ``` 2.0-2.3: # # 2.4-2.6: # #.foo> ``` I think the Ruby 2.4+ behavior is confusing and incorrect here, the object shouldn't be shown if it's not a singleton method, and Method#inspect shouldn't change for a given method. Do you agree what I describe should be the correct behavior? Can we fix it then? ---Files-------------------------------- method-inspect-15608.patch (2.31 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: