Lines Matching +full:windows +full:- +full:remote +full:- +full:only
3 This module only exists to provide OS-specific code
9 """OS-specific conversion from a relative URL of the 'file' scheme
18 # Windows itself uses ":" even in URLs.
23 # path is something like ////host/path/on/remote/host
24 # convert this to \\host\path\on\remote\host
28 # make sure not to convert quoted slashes :-)
31 if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
34 drive = comp[0][-1].upper()
40 # Issue #11474 - handing url such as |c/|
46 """OS-specific conversion from a file system path to a relative URL
64 # path is something like \\host\path\on\remote\host
65 # convert this to ////host/path/on/remote/host