(explanations: Iterable[str], is_or: bool)
| 483 | |
| 484 | |
| 485 | def _format_boolop(explanations: Iterable[str], is_or: bool) -> str: |
| 486 | explanation = "(" + (is_or and " or " or " and ").join(explanations) + ")" |
| 487 | return explanation.replace("%", "%%") |
| 488 | |
| 489 | |
| 490 | def _call_reprcompare( |
nothing calls this directly
no outgoing calls
no test coverage detected