(bug_block)
| 125 | |
| 126 | |
| 127 | def _parse_covers(bug_block): |
| 128 | m = _COVERS_RE.search(bug_block) |
| 129 | if not m: |
| 130 | return [] |
| 131 | raw = m.group(1).strip() |
| 132 | if not raw: |
| 133 | return [] |
| 134 | items = [s.strip() for s in raw.split(",")] |
| 135 | return [s for s in items if s] |
| 136 | |
| 137 | |
| 138 | def _parse_consolidation_rationale(bug_block): |
no test coverage detected