Searched refs:bc_path (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/test/test_importlib/source/ |
D | test_file_loader.py | 408 bc_path = self.manipulate_bytecode('_temp', mapping, 411 test('_temp', mapping, bc_path) 418 bc_path = self.manipulate_bytecode('_temp', mapping, 421 test('_temp', mapping, bc_path) 425 bc_path = self.manipulate_bytecode('_temp', mapping, 428 test('_temp', mapping, bc_path) 432 bc_path = self.manipulate_bytecode('_temp', mapping, 435 test('_temp', mapping, bc_path) 439 bc_path = self.manipulate_bytecode( 446 test('_temp', mapping, bc_path) [all …]
|
/third_party/python/Lib/test/ |
D | test_compileall.py | 60 self.bc_path = importlib.util.cache_from_source(self.source_path) 80 with open(self.bc_path, 'rb') as file: 114 with open(self.bc_path, 'rb') as file: 116 with open(self.bc_path, 'wb') as file: 134 for fn in (self.bc_path, self.bc_path2): 141 self.assertTrue(os.path.isfile(self.bc_path) and 143 os.unlink(self.bc_path) 146 self.assertTrue(os.path.isfile(self.bc_path) and 148 os.unlink(self.bc_path) 158 self.assertFalse(os.path.isfile(self.bc_path)) [all …]
|