| 1105 | def __len__(self): return 0 |
| 1106 | def __contains__(self, item): return False |
| 1107 | class ColNoSize: |
| 1108 | def __iter__(self): return iter([]) |
| 1109 | def __contains__(self, item): return False |
| 1110 | class ColNoCont: |
| 1111 | def __iter__(self): return iter([]) |
| 1112 | def __len__(self): return 0 |
no outgoing calls