| 445 | @pytest.mark.parametrize("normalize", (True, False)) |
| 446 | def test_variables_classes(normalize): |
| 447 | class WithSlots(object): |
| 448 | __slots__ = ('x', 'y') |
| 449 | |
| 450 | def __init__(self): |
| 451 | self.x = 3 |
| 452 | self.y = 4 |
| 453 | |
| 454 | @pysnooper.snoop(watch=( |
| 455 | pysnooper.Keys('_d', exclude='c'), |