http://ironpython.codeplex.com/workitem/33663
Cheers,
Michael
On Tue, Jan 15, 2013 at 3:04 PM, Slide wrote:
> Can you file an issue on codeplex please?
>
>
> On Mon, Jan 14, 2013 at 8:30 PM, Michael van der Kolff
> wrote:
>>
>> Using the following script:
>> class A(object):
>> @classmetho
Can you file an issue on codeplex please?
On Mon, Jan 14, 2013 at 8:30 PM, Michael van der Kolff <
[email protected]> wrote:
> Using the following script:
> class A(object):
> @classmethod
> def x(cls):
> print cls.__name__
>
> class B(A):
> @classmethod
> def x(cls)
Using the following script:
class A(object):
@classmethod
def x(cls):
print cls.__name__
class B(A):
@classmethod
def x(cls):
super(B,cls).x()
class C(B):
pass
class D(B):
@classmethod
def x(cls):
super(D,cls).x()
if __name__ == "__main__":