(t)
| 54 | |
| 55 | |
| 56 | def _extract_match(t): |
| 57 | m = LOCALIZED_PATTERN.match(t) |
| 58 | if m is None: |
| 59 | raise ExtractingError |
| 60 | # hint attribute, text content |
| 61 | return m.group(1), m.group(2) |
| 62 | |
| 63 | |
| 64 | def _resolve_ship(fitting, sMkt, b_localized): |
no outgoing calls
no test coverage detected