| 1103 | '__contains__') |
| 1104 | # Check sized container non-iterable (which is not Collection) etc. |
| 1105 | class ColNoIter: |
| 1106 | def __len__(self): return 0 |
| 1107 | def __contains__(self, item): return False |
| 1108 | class ColNoSize: |
| 1109 | def __iter__(self): return iter([]) |
| 1110 | def __contains__(self, item): return False |
no outgoing calls
searching dependent graphs…