For output which does not require specific line order
(s)
| 57 | |
| 58 | |
| 59 | def _split_and_sort(s): |
| 60 | """For output which does not require specific line order""" |
| 61 | return sorted(_strip_and_dedent(s).splitlines()) |
| 62 | |
| 63 | |
| 64 | def _make_explanation(a, b): |
no test coverage detected