Lines Matching refs:pyc_path
58 self.pyc_path = self.source_path + 'c'
77 py_compile.compile(self.source_path, self.pyc_path)
78 self.assertTrue(os.path.exists(self.pyc_path))
85 os.symlink(self.pyc_path + '.actual', self.pyc_path)
89 assert os.path.islink(self.pyc_path)
91 py_compile.compile(self.source_path, self.pyc_path)
108 os.path.basename(self.pyc_path))
109 self.assertTrue(os.path.exists(self.pyc_path))
114 os.path.relpath(self.pyc_path))
115 self.assertTrue(os.path.exists(self.pyc_path))
130 py_compile.compile(self.source_path, self.pyc_path)
142 py_compile.compile(self.source_path, self.pyc_path)
143 self.assertTrue(os.path.exists(self.pyc_path))
145 with open(self.pyc_path, 'rb') as fp:
161 pyc_path = weird_path + 'c'
173 self.assertFalse(os.path.exists(pyc_path))