HomeSort by relevance Sort by last modified time
    Searched refs:pyc_path (Results 1 - 4 of 4) sorted by null

  /external/python/cpython2/Lib/test/
test_py_compile.py 15 self.pyc_path = self.source_path + 'c'
34 py_compile.compile(self.source_path, self.pyc_path)
35 self.assertTrue(os.path.exists(self.pyc_path))
40 os.path.basename(self.pyc_path))
41 self.assertTrue(os.path.exists(self.pyc_path))
45 os.path.relpath(self.pyc_path))
46 self.assertTrue(os.path.exists(self.pyc_path))
  /external/python/cpython3/Lib/test/
test_py_compile.py 56 self.pyc_path = self.source_path + 'c'
75 py_compile.compile(self.source_path, self.pyc_path)
76 self.assertTrue(os.path.exists(self.pyc_path))
83 os.symlink(self.pyc_path + '.actual', self.pyc_path)
87 assert os.path.islink(self.pyc_path)
89 py_compile.compile(self.source_path, self.pyc_path)
106 os.path.basename(self.pyc_path))
107 self.assertTrue(os.path.exists(self.pyc_path))
112 os.path.relpath(self.pyc_path))
    [all...]
  /external/chromium-trace/
systrace.py 30 pyc_path = os.path.join(dirname, filename)
35 os.remove(pyc_path)
  /external/python/cpython3/Lib/test/test_import/
__init__.py 784 pyc_path = importlib.util.cache_from_source(self.source)
785 self.assertTrue(os.path.exists(pyc_path),
787 'exist'.format(pyc_path, TESTFN))
800 pyc_path = importlib.util.cache_from_source(self.source)
801 self.assertFalse(os.path.exists(pyc_path),
803 'exists'.format(pyc_path, TESTFN))
    [all...]

Completed in 3676 milliseconds