| 1231 | |
| 1232 | # Test leaks |
| 1233 | class Counted(object): |
| 1234 | counter = 0 # counts the number of instances alive |
| 1235 | def __init__(self): |
| 1236 | Counted.counter += 1 |
| 1237 | def __del__(self): |
| 1238 | Counted.counter -= 1 |
| 1239 | class C(object): |
| 1240 | __slots__ = ['a', 'b', 'c'] |
| 1241 | x = C() |