Message4521

Author kfitch42
Recipients cgroves, fwierzbicki, kfitch42, marcdownie, zyasoft
Date 2009-04-16.17:34:59
SpamBayes Score 0.0005266227
Marked as misclassified No
Message-id <1239903300.36.0.432895130286.issue1285@psf.upfronthosting.co.za>
In-reply-to
Content
I think I know where the issue is.
PyJavaType.java line 232
When respectJavaAccessibility==False it uses getDeclaredMethods, which
the java docs say does not find inherited methods.
When respectJavaAccessibility==True it uses getMethods, which does find
inherited methods (but only public ones) ... so we need to walk up the
heirarchy when respectJavaAccessibility==False (possibly making use of
the mro that was just computed) and collect ALL the methods.
History
Date User Action Args
2009-04-16 17:35:00kfitch42setmessageid: <1239903300.36.0.432895130286.issue1285@psf.upfronthosting.co.za>
2009-04-16 17:35:00kfitch42setrecipients: + kfitch42, cgroves, fwierzbicki, zyasoft, marcdownie
2009-04-16 17:34:59kfitch42linkissue1285 messages
2009-04-16 17:34:59kfitch42create