| 1122 | def __contains__(self): return False |
| 1123 | __len__ = None |
| 1124 | class IterBlock: |
| 1125 | def __len__(self): return 0 |
| 1126 | def __contains__(self): return True |
| 1127 | __iter__ = None |
| 1128 | self.assertNotIsSubclass(SizeBlock, Collection) |
| 1129 | self.assertNotIsInstance(SizeBlock(), Collection) |
| 1130 | self.assertNotIsSubclass(IterBlock, Collection) |
no outgoing calls