Lines Matching refs:unc
57 # Parse UNC paths
59 """Split a pathname into UNC mount point and relative path specifiers.
61 Return a 2-tuple (unc, rest); either part may be empty.
62 If unc is not empty, it has the form '//host/mount' (or similar
63 using backslashes). unc+rest is always the input path.
64 Paths containing drive letters never have an UNC part.
70 # is a UNC path:
77 ##raise RuntimeError, 'illegal UNC path: "' + p + '"'
107 # or an UNC path with at most a / or \ after the mount point.
111 unc, rest = splitunc(path)
112 if unc: