[#69084] [Ruby trunk - Feature #11124] [Open] [PATCH] lib/*: use monotonic clock for timeouts — normalperson@...
Issue #11124 has been reported by Eric Wong.
5 messages
2015/05/06
[#69138] [Ruby trunk - Feature #11136] [PATCH] webrick: avoid fcntl module — nobu@...
Issue #11136 has been updated by Nobuyoshi Nakada.
3 messages
2015/05/12
[#69160] [Ruby trunk - Feature #11146] [PATCH] variable.c: initialize generic_iv_tbl at start — nobu@...
Issue #11146 has been updated by Nobuyoshi Nakada.
4 messages
2015/05/13
[#69175] Re: [Ruby trunk - Feature #11146] [PATCH] variable.c: initialize generic_iv_tbl at start
— Eric Wong <normalperson@...>
2015/05/13
nobu@ruby-lang.org wrote:
[ruby-core:69388] [Ruby trunk - Bug #11188] [Open] Method#inspect for chaining alias methods
From:
ko1@...
Date:
2015-05-27 18:39:27 UTC
List:
ruby-core #69388
Issue #11188 has been reported by Koichi Sasada. ---------------------------------------- Bug #11188: Method#inspect for chaining alias methods https://bugs.ruby-lang.org/issues/11188 * Author: Koichi Sasada * Status: Open * Priority: Normal * Assignee: Yukihiro Matsumoto * ruby -v: 2.3dev * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- The following script prints strange results (at least for me). ```ruby class C0 def foo end end class C1 < C0 alias foo1 foo alias foo2 foo1 alias foo3 foo2 end p C1.new.method(:foo) p C1.new.method(:foo1) p C1.new.method(:foo2) p C1.new.method(:foo3) ``` Result: ``` #<Method: C1(C0)#foo> #<Method: C1(C0)#foo1(foo)> #<Method: C1#foo2(foo)> #<Method: C1#foo3(foo)> ``` I believe 3rd and 4th results should be: ``` #<Method: C1(C0)#foo2(foo)> #<Method: C1(C0)#foo3(foo)> ``` How about it? -- https://bugs.ruby-lang.org/