Lines Matching defs:path
24 def UnixifyPath(path):
27 return path
29 ["cygpath", "-u", path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
34 return path
38 # elsewhere on the system. Also convert to Unix style path on Cygwin systems,
40 path = UnixifyPath(sys.argv[0])
41 sys.path.insert(0, os.path.join(os.path.dirname(path), "pylib"))