Message10567
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;
} |
|
Date |
User |
Action |
Args |
2015-12-29 16:08:05 | zyasoft | set | messageid: <1451405285.8.0.609275874958.issue2445@psf.upfronthosting.co.za> |
2015-12-29 16:08:05 | zyasoft | set | recipients:
+ zyasoft, tomluk |
2015-12-29 16:08:05 | zyasoft | link | issue2445 messages |
2015-12-29 16:08:05 | zyasoft | create | |
|