Pure python equivalent of isdisjoint()
(s1, s2)
| 130 | |
| 131 | def test_isdisjoint(self): |
| 132 | def f(s1, s2): |
| 133 | 'Pure python equivalent of isdisjoint()' |
| 134 | return not set(s1).intersection(s2) |
| 135 | for larg in '', 'a', 'ab', 'abc', 'ababac', 'cdc', 'cc', 'efgfe', 'ccb', 'ef': |
| 136 | s1 = self.thetype(larg) |
| 137 | for rarg in '', 'a', 'ab', 'abc', 'ababac', 'cdc', 'cc', 'efgfe', 'ccb', 'ef': |
nothing calls this directly
no test coverage detected