On Fri, 2004-12-24 at 20:07, Nitin Shukla wrote:
> Hello,
>
> Can anyone tell why am I getting this error and how to work around this
> problem.
>
> >>> class Klass(object):
> ... __slots__ = ( 'x' )
> ...
> >>> class Klass1(object):
> ... __slots__ = ( 'y' )
> ...
> >>> class Klass(Klass, Kl
Nitin Shukla <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Can anyone tell why am I getting this error and how to work around this
> problem.
>
> >>> class Klass(object):
> ... __slots__ = ( 'x' )
> ...
> >>> class Klass1(object):
> ... __slots__ = ( 'y' )
> ...
> >>> class Klass(Klass, Klass1):
>
Hello,
Can anyone tell why am I getting this error and how to work around this
problem.
>>> class Klass(object):
... __slots__ = ( 'x' )
...
>>> class Klass1(object):
... __slots__ = ( 'y' )
...
>>> class Klass(Klass, Klass1):
... __slots__ = ( 'z' )
...
Traceback (most recent call la