[Ironpython-users] issubclass throws TypeErrorException

2015-09-27 Thread Pilger Jan
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

Re: [Ironpython-users] issubclass throws TypeErrorException

2015-09-27 Thread Jeff Hardy
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, > > >