blob: 849a12b0f0e41e46486218e79f7617339cc8ea4c [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 <warning descr="Old-style class contains __slots__ definition">__slots__</warning>="123"
3
4class Base(object):
5 __slots__="123"
6
7class Derived(Base):
8 __slots__="123"
9
10class DerivedDerived(Derived):
11 __slots__="123"