(po)
| 25 | |
| 26 | |
| 27 | def _extract_msgids(po): |
| 28 | msgids = [] |
| 29 | for msgid in msgid_pattern.findall(po): |
| 30 | msgid_string = ''.join(msgid_string_pattern.findall(msgid)) |
| 31 | msgid_string = msgid_string.replace(r'\"', '"') |
| 32 | if msgid_string: |
| 33 | msgids.append(msgid_string) |
| 34 | return sorted(msgids) |
| 35 | |
| 36 | |
| 37 | def _get_snapshot_path(module_name): |
no test coverage detected
searching dependent graphs…