Lines Matching refs:path
44 cls.realpath = os.path.realpath(__file__)
45 cls.path = os.path.dirname(cls.realpath)
49 del cls.realpath, cls.path
61 os.chdir(self.path)
64 self.assertIn(os.path.join(os.curdir, filename), filelist)
69 readme = os.path.join(self.path, 'README.txt')
71 # Check for Python files in path where this file lives.
72 filelist = list(ff(self.path, '*.py', False))
78 # Look for .txt files in path where this file lives.
79 filelist = list(ff(self.path, '*.txt', False))
85 filelist = list(ff(self.path, 'grep.*', False))
91 parent = os.path.dirname(self.path)
92 grepfile = os.path.join(parent, 'grep.py')
113 parent = os.path.dirname(parent)