(self, hostpath: str)
| 324 | return str(hostpath) |
| 325 | |
| 326 | def is_safe_host_path(self, hostpath: str) -> bool: |
| 327 | hpath = Path(hostpath) |
| 328 | |
| 329 | return self.__is_safe_host_path(hpath, strict=False) |
| 330 | |
| 331 | @staticmethod |
| 332 | def __host_casefold_path(hostpath: str) -> Optional[str]: |
no test coverage detected