Skip to content

Commit 9c2e61c

Browse files
committed
Fix for .NET 9
1 parent 3b32695 commit 9c2e61c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Src/IronPython/Runtime/Types/NewTypeMaker.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,7 @@ private void ImplementCustomTypeDescriptor() {
531531
ImplementInterface(typeof(ICustomTypeDescriptor));
532532

533533
foreach (MethodInfo m in typeof(ICustomTypeDescriptor).GetMethods()) {
534+
if (!m.IsAbstract) continue;
534535
ImplementCTDOverride(m);
535536
}
536537
}

0 commit comments

Comments
 (0)