(self, config, negate=False)
| 382 | return False |
| 383 | |
| 384 | def _eval_str(self, config, negate=False): |
| 385 | if negate: |
| 386 | conjunction = " and " |
| 387 | else: |
| 388 | conjunction = " or " |
| 389 | return conjunction.join( |
| 390 | p._as_string(config, negate=negate) for p in self.predicates |
| 391 | ) |
| 392 | |
| 393 | def _negation_str(self, config): |
| 394 | if self.description is not None: |
no test coverage detected