Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/embed_tests/Inheritance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ public void InheritedFromInheritedClassIsSelf()
Assert.IsTrue(PythonReferenceComparer.Instance.Equals(b, bInstanceClass));
}

// https://github.com/pythonnet/pythonnet/issues/1420
[Test]
public void CallBaseMethodFromContainerInNestedClass()
{
using var nested = new ContainerClass.InnerClass().ToPython();
nested.InvokeMethod(nameof(ContainerClass.BaseMethod));
}

[Test]
public void Grandchild_PassesExtraBaseInstanceCheck()
{
Expand Down Expand Up @@ -183,4 +191,14 @@ public int XProp
set => this.extras[nameof(this.XProp)] = value;
}
}

public class ContainerClass
{
public void BaseMethod() { }

public class InnerClass: ContainerClass
{

}
}
}