def fileUrlToSystemPath(url): """Returns a system path. This path is determined by the system that the Python interpreter is running on. """ return pyuno.fileUrlToSystemPath(url)
def fileUrlToSystemPath( url ): "returns a system path (determined by the system, the python interpreter is running on)" return pyuno.fileUrlToSystemPath( url )
def fileUrlToSystemPath(url): "returns a system path (determined by the system, the python interpreter is running on)" return pyuno.fileUrlToSystemPath(url)
def convert_url_to_path(url: str) -> str: """ >>> convert_url_to_path('file:///var/tmp/libreoffice') '/var/tmp/libreoffice' """ return pyuno.fileUrlToSystemPath(url)
def fileUrlToSystemPath(url): return pyuno.fileUrlToSystemPath(url)