Lines Matching refs:path
24 def path_splitall(path):
26 Utility function to split a relative path into its component pieces.
29 path(str): The relative path to split.
32 list(str): An array of path parts.
34 # Sanity check we have a relative path on Windows
35 assert ":" not in path
38 while path:
39 head, tail = os.path.split(path)
40 path = head