(path: str)
| 103 | |
| 104 | |
| 105 | def _is_forward_slash_absolute(path: str) -> bool: |
| 106 | return path.startswith("/") or re.match(r"^[A-Za-z]:/", path) is not None |
| 107 | |
| 108 | |
| 109 | def _has_dot_components(path: str) -> bool: |
no outgoing calls
no test coverage detected