(value: str)
| 207 | |
| 208 | |
| 209 | def _normalize_arxiv_id(value: str) -> str: |
| 210 | arxiv_id = extract_arxiv_id(value) or "" |
| 211 | return re.sub(r"^arxiv:\s*", "", arxiv_id, flags=re.IGNORECASE).strip().lower() |
| 212 | |
| 213 | |
| 214 | def _short_acronym_like(value: str) -> bool: |
no test coverage detected