Object#private_instance_methods is returning too many values
------------------------------------------------------------

                 Key: JRUBY-999
                 URL: http://jira.codehaus.org/browse/JRUBY-999
             Project: JRuby
          Issue Type: Bug
          Components: Core Classes/Modules
    Affects Versions: JRuby 1.0.0RC2
         Environment: Discovered on osx
            Reporter: Dr Nic Williams
            Priority: Minor


As an example:

Normal irb:
>> Object.instance_methods.grep /64/
=> ["encode64", "b64encode", "decode64"]
>> Object.private_instance_methods.grep /64/
=> []

Via jruby:
>> Object.instance_methods.grep /64/
=> ["encode64", "decode64", "b64encode"]
>> Object.private_instance_methods.grep /64/
=> ["encode64", "decode64", "b64encode"]

I believe the entire set of duplicate methods is:
decode64 encode64 decode_b b64encode ` load

Note: ` method in the list

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to