HomeSort by relevance Sort by last modified time
    Searched refs:pyc_path (Results 1 - 8 of 8) 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))
  /prebuilts/gdb/darwin-x86/lib/python2.7/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))
41 os.path.basename(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
47 os.path.relpath(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/gdb/linux-x86/lib/python2.7/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))
41 os.path.basename(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
47 os.path.relpath(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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))
41 os.path.basename(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
47 os.path.relpath(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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))
41 os.path.basename(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
47 os.path.relpath(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /external/python/cpython3/Lib/test/
test_py_compile.py 18 self.pyc_path = self.source_path + 'c'
37 py_compile.compile(self.source_path, self.pyc_path)
38 self.assertTrue(os.path.exists(self.pyc_path))
45 os.symlink(self.pyc_path + '.actual', self.pyc_path)
49 assert os.path.islink(self.pyc_path)
51 py_compile.compile(self.source_path, self.pyc_path)
68 os.path.basename(self.pyc_path))
69 self.assertTrue(os.path.exists(self.pyc_path))
74 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 681 pyc_path = importlib.util.cache_from_source(self.source)
682 self.assertTrue(os.path.exists(pyc_path),
684 'exist'.format(pyc_path, TESTFN))
697 pyc_path = importlib.util.cache_from_source(self.source)
698 self.assertFalse(os.path.exists(pyc_path),
700 'exists'.format(pyc_path, TESTFN))
    [all...]

Completed in 312 milliseconds