Message1848
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'>)
|
|
| Date |
User |
Action |
Args |
| 2008-02-20 17:17:59 | admin | link | issue1776172 messages |
| 2008-02-20 17:17:59 | admin | create | |
|