| 1139 | def __contains__(self, item): |
| 1140 | return False |
| 1141 | class NonCol(ColImpl): |
| 1142 | __contains__ = None |
| 1143 | self.assertNotIsSubclass(NonCol, Collection) |
| 1144 | self.assertNotIsInstance(NonCol(), Collection) |
| 1145 |
no outgoing calls
searching dependent graphs…