Skip to content

Added a regression test for calling base method from nested class #1652

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 30, 2021
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
{

}
}
}