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