Hi IronPython user message board,
I have defined three classes in a C# project:
public class BaseClass
{
}
public class SubClass : BaseClass
{
}
public class SubClass : BaseClass
{
}
The following IronPython code throws a TypeErrorException (IronPython 2.7):
issubclass(SubClass, BaseClass)
E
I'm thinking this might be a bug, where IronPython is getting confused by
the generic and non-generic versions of the class. Can you open an issue on
https://github.com/IronLanguages/main/issues?
- Jeff
On Fri, Sep 25, 2015 at 7:08 AM, Pilger Jan
wrote:
> Hi IronPython user message board,
>
>
>