Home | History | Annotate | Download | only in test

Lines Matching defs:__slots__

301             __slots__ = []
308 __slots__ = ["__class__", "__dict__"]
1803 type('A', (long,), {'__slots__': 'x'})
1805 type('A', (), {'__slots__': ''})
1807 type('A', (), {'__slots__': '42'})
1809 type('A', (), {'__slots__': 'x\x00y'})
1811 type('A', (), {'__slots__
1813 type('A', (), {'__slots__': ('__weakref__', '__weakref__')})
1818 type('A', (B,), {'__slots__': '__dict__'})
1820 type('A', (B,), {'__slots__': '__weakref__'})