(self, *others)
| 54 | return rule |
| 55 | |
| 56 | def add(self, *others): |
| 57 | copy = compound() |
| 58 | copy.fails.update(self.fails) |
| 59 | copy.skips.update(self.skips) |
| 60 | copy.warns.update(self.warns) |
| 61 | |
| 62 | for other in others: |
| 63 | copy.fails.update(other.fails) |
| 64 | copy.skips.update(other.skips) |
| 65 | copy.warns.update(other.warns) |
| 66 | return copy |
| 67 | |
| 68 | def not_(self): |
| 69 | copy = compound() |