| 1109 | def __iter__(self): return iter([]) |
| 1110 | def __contains__(self, item): return False |
| 1111 | class ColNoCont: |
| 1112 | def __iter__(self): return iter([]) |
| 1113 | def __len__(self): return 0 |
| 1114 | self.assertNotIsSubclass(ColNoIter, Collection) |
| 1115 | self.assertNotIsInstance(ColNoIter(), Collection) |
| 1116 | self.assertNotIsSubclass(ColNoSize, Collection) |
no outgoing calls
searching dependent graphs…