Message10567

Author zyasoft
Recipients tomluk, zyasoft
Date 2015-12-29.16:08:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451405285.8.0.609275874958.issue2445@psf.upfronthosting.co.za>
In-reply-to
Content
Tom, no worries about your initial "skinny" report :)

The underlying problem may be this line of code in PyJavaType:

if (method.equals("__iter__") && proxySet.equals(Generic.set(Iterable.class, Map.class))) {
    continue;
}

Mostly likely this equality test is too restricted and it should be instead testing it the proxy set is a subset:

if (method.equals("__iter__") && proxySet.containsAll(Generic.set(Iterable.class, Map.class))) {
    continue;
}
History
Date User Action Args
2015-12-29 16:08:05zyasoftsetmessageid: <1451405285.8.0.609275874958.issue2445@psf.upfronthosting.co.za>
2015-12-29 16:08:05zyasoftsetrecipients: + zyasoft, tomluk
2015-12-29 16:08:05zyasoftlinkissue2445 messages
2015-12-29 16:08:05zyasoftcreate