We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d834e17 commit 96283e6Copy full SHA for 96283e6
Src/IronPython/Runtime/Types/NewTypeMaker.cs
@@ -540,6 +540,7 @@ private void ImplementCustomTypeDescriptor() {
540
ImplementInterface(typeof(ICustomTypeDescriptor));
541
542
foreach (MethodInfo m in typeof(ICustomTypeDescriptor).GetMethods()) {
543
+ if (!m.IsAbstract) continue;
544
ImplementCTDOverride(m);
545
}
546
0 commit comments