(text: str)
| 153 | |
| 154 | |
| 155 | def _token_set(text: str) -> set[str]: |
| 156 | return {token for token in re.findall(r"[a-zA-Z0-9_\-]{4,}", text.lower()) if token} |
| 157 | |
| 158 | |
| 159 | def _best_catalog_match(page: Dict[str, Any], catalog: Sequence[Dict[str, Any]], used_refs: set[str]) -> str: |
no outgoing calls
no test coverage detected