| 632 | lengths = {"empty": empty, "short": short, "long": long} |
| 633 | # Test that a subclass that doesn't replace __repr__ works with different lengths |
| 634 | class MV(MappingView): pass |
| 635 | |
| 636 | for name, d in lengths.items(): |
| 637 | with self.subTest(length=name, name="Views"): |