Hi I have some problems getting 'super' working with IronPython. Running the following simple script:
class A:
def Foo(self):
pass
class B(A):
def Foo(self):
super(B, self).Foo()
B().Foo()
yields:
TypeError: expected type, got classobj
Any ideas?
/anders_______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
