Message1848

Author mastrodomenico
Recipients
Date 2007-08-17.15:54:37
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This doesn't seem a bug to me: are you sure this isn't simply the difference between bound (ClassName().method) and unbound methods (ClassName.method)?

Jython 2.2rc3 on java1.5.0_12
Type "copyright", "credits" or "license" for more information.
>>> from java.lang import String
>>> clazz = __import__('java.lang.String', {}, {}, 'String')
>>> type(String().indexOf), type(clazz().indexOf)
(<type 'method'>, <type 'method'>)
>>> type(String.indexOf), type(clazz.indexOf)
(<type 'reflectedfunction'>, <type 'reflectedfunction'>)
History
Date User Action Args
2008-02-20 17:17:59adminlinkissue1776172 messages
2008-02-20 17:17:59admincreate