Lines Matching full:path
14 self.top.wm_title("Path Browser")
15 self.top.wm_iconname("Path Browser")
23 return "sys.path"
27 for dir in sys.path:
51 file = os.path.join(self.dir, name)
53 nn = os.path.normcase(name)
61 item = ModuleBrowserTreeItem(os.path.join(self.dir, name))
66 if not os.path.isdir(file):
68 init = os.path.join(file, "__init__.py")
69 return os.path.exists(init)
78 normed_name = os.path.normcase(name)