Skip to content

Commit

Permalink
Don't list extension methods multiple times (#1620)
Browse files Browse the repository at this point in the history
* Don't return same method multiple times

* Deduplicate in PythonExtensionBinder instead

* Re-enable test

* Disable on .NET Core 2.1
  • Loading branch information
slozier authored Feb 26, 2023
1 parent ca06ddb commit f41afc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions Src/IronPython/Runtime/Binding/PythonExtensionBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public PythonExtensionBinder(PythonBinder binder, ExtensionMethodSet extensionMe
public override MemberGroup GetMember(MemberRequestKind actionKind, Type type, string name) {
var res = base.GetMember(actionKind, type, name);
if (res.Count == 0) {
List<MemberTracker> trackers = new List<MemberTracker>();
// GetExtensionMethods may return duplicate MethodInfo so use a HashSet - https://github.com/IronLanguages/ironpython2/issues/810
HashSet<MemberTracker> trackers = null;

foreach (var method in _extMethodSet.GetExtensionMethods(name)) {
var parameters = method.GetParameters();
Expand All @@ -34,11 +35,11 @@ public override MemberGroup GetMember(MemberRequestKind actionKind, Type type, s
var paramType = parameters[0].ParameterType;

if (IsApplicableExtensionMethod(type, paramType)) {
trackers.Add(MemberTracker.FromMemberInfo(method, paramType));
(trackers ??= new HashSet<MemberTracker>()).Add(MemberTracker.FromMemberInfo(method, paramType));
}
}

if (trackers.Count > 0) {
if (trackers is not null) {
return new MemberGroup(trackers.ToArray());
}
}
Expand Down
4 changes: 2 additions & 2 deletions Tests/test_cliclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -1872,9 +1872,9 @@ class MyXamlRootObject(XamlTestObject):
finally:
os.unlink(fname)

@unittest.skipIf(is_netcoreapp, "https://github.com/IronLanguages/ironpython2/issues/810")
@unittest.skipIf(is_netcoreapp21, "TODO: figure out")
def test_extension_methods(self):
import clr, imp, os
import clr, os
if is_netcoreapp:
clr.AddReference('System.Linq')
else:
Expand Down

0 comments on commit f41afc4

Please sign in to comment.