Lines Matching refs:posixpath
11 import posixpath
2189 posixpath.sep, generate all parents of that path.
2208 posixpath.sep, generate all elements of that path
2221 path = path.rstrip(posixpath.sep)
2222 while path and path != posixpath.sep:
2224 path, tail = posixpath.split(path)
2306 as_dirs = (p + posixpath.sep for p in parents)
2443 >>> str(c).replace(os.sep, posixpath.sep)
2453 >>> str(root.filename).replace(os.sep, posixpath.sep)
2524 return posixpath.dirname(path.at.rstrip("/")) == self.at.rstrip("/")
2545 return posixpath.join(self.root.filename, self.at)
2551 next = posixpath.join(self.at, *other)
2560 parent_at = posixpath.dirname(self.at.rstrip('/'))