Project

General

Profile

Actions

Bug #8044

closed

Object#methods incompatible with prepend

Added by marcandre (Marc-Andre Lafortune) about 11 years ago. Updated about 11 years ago.

Status:
Closed
Assignee:
-
Target version:
ruby -v:
r39608
Backport:
[ruby-core:53207]

Description

Object#methods incompatible with prepend:

o = Object.new
def o.foo; end
o.methods(false) # => [:foo], ok
o.singleton_class.send :prepend, Enumerable
o.methods(false) # => [], should be [:foo]

Related issues 1 (0 open1 closed)

Has duplicate Ruby master - Bug #8045: Object#singleton_methods incompatible with prependClosed03/08/2013Actions

Updated by marcandre (Marc-Andre Lafortune) about 11 years ago

{public|protected|private}_methods have the same problem, since they all call class_instance_method_list

Actions #2

Updated by nobu (Nobuyoshi Nakada) about 11 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

This issue was solved with changeset r39744.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


class.c: from the origin class

Actions

Also available in: Atom PDF

Like0
Like0Like0